-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 867 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 867 Bytes
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
{
"name": "litesaml/schemas",
"description": "Deliver schemas for Lite Saml library",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "William",
"email": "work@suppo.fr"
}
],
"autoload": {
"psr-4": {
"LiteSaml\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": "^8.1"
},
"require-dev": {
"phpunit/phpunit": "^10.1",
"squizlabs/php_codesniffer": "^3.10.2",
"phpstan/phpstan": "^2.1.5"
},
"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"
}
}