-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathcomposer.json
50 lines (50 loc) · 1.38 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
48
49
50
{
"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": "dev@mabe.berlin",
"homepage": "https://mabe.berlin/",
"role": "Lead"
}],
"license": "BSD-3-Clause",
"require": {
"php": "^7.1 | ^8.0",
"ext-reflection": "*"
},
"require-dev": {
"phpbench/phpbench": "^0.16.10 || ^1.0.4",
"phpstan/phpstan": "^1.3.1",
"phpunit/phpunit": "^7.5.20 | ^8.5.22 | ^9.5.11",
"vimeo/psalm": "^4.17.0 | ^5.26.1"
},
"autoload": {
"psr-4": {
"MabeEnum\\": "src/"
},
"classmap": [
"stubs/Stringable.php"
]
},
"autoload-dev": {
"psr-4": {
"MabeEnumTest\\": "tests/MabeEnumTest/",
"MabeEnumStaticAnalysis\\": "tests/MabeEnumStaticAnalysis/",
"MabeEnumBench\\": "bench/"
}
},
"extra": {
"branch-alias": {
"dev-master": "4.7-dev",
"dev-3.x": "3.2-dev"
}
}
}