-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
33 lines (33 loc) · 899 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
{
"name": "dbalabka/php-enumeration",
"description": "Implementation of Enumeration Classes in PHP. The better alternative for Enums",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Dmitry Balabka",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1"
},
"require-dev": {
"myclabs/php-enum": "^1.0",
"phpunit/phpunit": "^7.5",
"phpbench/phpbench": "^0.16.9",
"vimeo/psalm": "^3.5"
},
"autoload": {
"psr-4": {
"Dbalabka\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Dbalabka\\Enumeration\\Examples\\": "examples",
"Dbalabka\\Enumeration\\Tests\\": "tests\\Enumeration",
"Dbalabka\\StaticConstructorLoader\\Tests\\": "tests\\StaticConstructorLoader"
}
}
}