forked from tumugin/stannum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 992 Bytes
/
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
{
"name": "tumugin/stannum",
"description": "Stannum makes PHP's scalar types more expressive!",
"type": "library",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "myskng",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"beberlei/assert": "^3.3.2",
"ext-mbstring": "*"
},
"autoload": {
"psr-4": {
"Tumugin\\Stannum\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tumugin\\Stannum\\Test\\": "test/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5.14",
"squizlabs/php_codesniffer": "^3.6.2",
"phpstan/phpstan": "^1.6"
},
"scripts": {
"phpcs": "vendor/bin/phpcs",
"phpcs:fix": "vendor/bin/phpcbf",
"test": "XDEBUG_MODE=coverage vendor/bin/phpunit --testdox --colors=always",
"test:coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html build/coverage",
"phpstan": "vendor/bin/phpstan --configuration=phpstan.neon"
}
}