forked from litesaml/lightsaml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.82 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
{
"name": "litesaml/lightsaml",
"license": "MIT",
"type": "library",
"description": "SAML 2.0 PHP library",
"keywords": ["SAML 2.0", "PHP", "library", "lightSAML", "Single SignOn", "Single Logout"],
"authors": [
{
"name": "William",
"email": "[email protected]"
},
{
"name": "Milos Tomic",
"email": "[email protected]",
"homepage": "https://github.com/tmilos/",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/litesaml/lightsaml/issues",
"source": "https://github.com/litesaml/lightsaml",
"docs": "https://docs.litesaml.com"
},
"autoload": {
"psr-4": {
"LightSaml\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LightSaml\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.4",
"robrichards/xmlseclibs": "~2.0|~3.0|~4.0",
"symfony/http-foundation": "~5.0|~6.0|~7.0",
"psr/event-dispatcher": "^1.0"
},
"require-dev": {
"symfony/dom-crawler": "~5.0|~6.0|~7.0",
"symfony/css-selector": "~5.0|~6.0|~7.0",
"pimple/pimple": "~3.0",
"phpunit/phpunit": "~8.4|~9.5",
"monolog/monolog": "^2.0|^3.0",
"squizlabs/php_codesniffer": "^3.6",
"litesaml/schemas": "~1.0.0",
"phpstan/phpstan": "^1.8",
"marcocesarato/php-conventional-changelog": "^1.15"
},
"prefer-stable": true,
"minimum-stability": "stable",
"scripts": {
"test": "vendor/bin/phpunit",
"phpcs": "vendor/bin/phpcs --standard=PSR12 --exclude=Generic.Files.LineLength ./src",
"phpstan": "vendor/bin/phpstan analyse --memory-limit 512M --ansi",
"tag": "vendor/bin/conventional-changelog --commit"
}
}