-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
46 lines (42 loc) · 1.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
{
"name": "grifart/enum",
"description": "Provides bullet proof enums with behaviours.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jan Kuchař",
"email": "[email protected]"
}
],
"scripts": {
"verify": [
"@phpstan",
"@test"
],
"phpstan": "vendor/bin/phpstan analyze -c phpstan.neon --error-format compact --no-interaction --ansi --no-progress -- src",
"test": "vendor/bin/tester tests --colors 1"
},
"require": {
"php": ">=7.2.0"
},
"autoload": {
"psr-4": {
"Grifart\\Enum\\": "src"
},
"classmap": [
"src/exceptions.php"
]
},
"require-dev": {
"nette/tester": "~2.4.2",
"phpstan/phpstan": "~1.6.9",
"phpstan/phpstan-strict-rules": "~1.2.3",
"grifart/phpstan-oneline": "~v0.4.2"
},
"autoload-dev": {
"files": [
"src/exceptions.php"
]
}
}