-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 2.03 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
{
"name": "pbraiders/stdlib",
"description": "Pbraiders stdlib component",
"homepage": "https://github.com/pbraiders/stdlib",
"readme": "README.md",
"time": "2021-11-01",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Olivier Jullien",
"homepage": "https://github.com/ojullien",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"docs": "https://github.com/pbraiders/stdlib/docs",
"issues": "https://github.com/pbraiders/stdlib/issues",
"source": "https://github.com/pbraiders/stdlib"
},
"require": {
"php": "^7.4 || ^8.0"
},
"autoload": {
"psr-4": {
"Pbraiders\\Stdlib\\": "src/"
},
"files": [
"src/Stdlib.php"
]
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.2",
"phpstan/phpstan": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpunit/phpunit": "^9",
"psalm/plugin-phpunit": "^0.16.1",
"squizlabs/php_codesniffer": "^3.6",
"vimeo/psalm": "^4.12"
},
"autoload-dev": {
"psr-4": {
"PbraidersTest\\Stdlib\\": "tests/"
},
"files": [
"src/Stdlib.php"
]
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"scripts": {
"check-cs": "vendor/bin/phpcs --standard=.github/linters/phpcs.xml --report=checkstyle",
"fix-cs": [
"@squizlabs"
],
"psalm": "vendor/bin/psalm --config=.github/linters/psalm.xml --threads=4 --show-info=true --long-progress --stats",
"squizlabs": "vendor/bin/phpcbf --standard=.github/linters/phpcs.xml --no-cache",
"stan": "vendor/bin/phpstan analyse -c .github/linters/phpstan.neon --no-progress --xdebug",
"test": "vendor/bin/phpunit --configuration phpunit.xml"
}
}