forked from marc-mabe/php-enum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.23 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
{
"name": "marc-mabe/php-enum",
"description": "Simple and fast implementation of enumerations with native PHP",
"type": "library",
"keywords": [
"enum", "enumeration", "enumerator",
"enumset", "enum-set", "set",
"enummap", "enum-map", "map",
"type", "typehint", "type-hint"
],
"homepage": "https://github.com/marc-mabe/php-enum",
"authors": [{
"name": "Marc Bennewitz",
"email": "[email protected]",
"homepage": "http://mabe.berlin/",
"role": "Lead"
}],
"license": "BSD-3-Clause",
"require": {
"php": ">=7.1",
"ext-reflection": "*"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"phpbench/phpbench": "^0.16.1",
"vimeo/psalm": "^3.10"
},
"autoload": {
"psr-4": {
"MabeEnum\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MabeEnumTest\\": "tests/MabeEnumTest/",
"MabeEnumBench\\": "bench/"
}
},
"extra": {
"branch-alias": {
"dev-master": "4.0-dev",
"dev-3.x": "3.1-dev",
"dev-2.x": "2.3-dev",
"dev-1.x": "1.3-dev"
}
}
}