-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
42 lines (42 loc) · 1004 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
36
37
38
39
40
41
42
{
"name": "thunderer/platenum",
"description": "PHP enum library",
"keywords": ["enum", "enumeration"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Tomasz Kowalczyk",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1|^8.0"
},
"require-dev": {
"ext-json": "*",
"phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0|^10.0",
"vimeo/psalm": "^3.14|^4.0|^5.0",
"doctrine/dbal": "^2.13|^3.0",
"doctrine/orm": "^2.9|^3.0",
"infection/infection": ">=0.13"
},
"autoload": {
"psr-4": {
"Thunder\\Platenum\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Thunder\\Platenum\\Tests\\": "tests"
}
},
"suggest": {
"ext-json": "Allow JSON serializable enumerations."
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}