-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
35 lines (35 loc) · 931 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
{
"name": "prinsfrank/enums",
"description": "Adds missing strictly typed methods to work with enums",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"PrinsFrank\\Enums\\": "src/"
}
},
"require": {
"php": "^8.1 || ^8.2 || ^8.3 || ^8.4"
},
"autoload-dev": {
"psr-4": {
"PrinsFrank\\Enums\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"friendsofphp/php-cs-fixer": "^3.43",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-strict-rules": "^1.5"
},
"scripts": {
"cs": "php-cs-fixer fix --allow-risky=yes --dry-run",
"cs:fix": "php-cs-fixer fix --allow-risky=yes",
"stan": "phpstan analyse --memory-limit 4G",
"unit": "phpunit --testsuite=Unit",
"test": [
"@unit",
"@cs"
]
}
}