forked from simpleid/simpleid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
69 lines (69 loc) · 1.9 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "simpleid/simpleid",
"description": "A simple, personal OpenID provider written in PHP",
"type": "project",
"require": {
"php": "^7.2 || ^8.0",
"ext-bcmath": "*",
"ext-pcre": "*",
"ext-session": "*",
"ext-xml": "*",
"ext-xmlreader": "*",
"ext-openssl": "*",
"ext-hash": "*",
"kelvinmo/simplexrd": "^3.0",
"kelvinmo/simplejwt": "^0.6",
"kelvinmo/fernet-php": "^1.0 | ^0.5",
"bcosca/fatfree-core": "^3.7",
"mustangostang/spyc": "^0.6",
"composer/semver": "^3.0",
"psr/log": "^1.0",
"wikimedia/composer-merge-plugin": "^2.0",
"kelvinmo/f3-event-dispatcher": "^0.1",
"robinvdvleuten/ulid": "^5.0"
},
"suggest": {
"ext-gmp": "Better performance",
"simpleid/simpleid-tool": "Utilities for SimpleID"
},
"require-dev": {
"phpunit/phpunit": "^7.0 || ^9.3",
"consolidation/robo": "^3.0",
"phpstan/phpstan": "^1.3.0"
},
"license": "GPL-2.0+",
"authors": [
{
"name": "Kelvin Mo",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"SimpleID\\Upgrade\\": "www/upgrade",
"SimpleID\\": "www/core"
}
},
"config": {
"vendor-dir": "www/vendor",
"allow-plugins": {
"wikimedia/composer-merge-plugin": true,
"simpleid/module-installer": true
}
},
"scripts": {
"test": [ "@composer install", "phpunit" ],
"phpstan": [ "@composer install", "phpstan analyse" ],
"update-copyright": [ "@composer install", "robo update_copyright" ]
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
},
"merge-plugin": {
"include": [
"composer.site.json"
]
}
}
}