-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 926 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
{
"name": "neutronstars/doctrine-enum-php-type",
"description": "Added a doctrine type for the php enumeration system designed to be as close as possible to PHP 8.1 for earlier versions.",
"type": "library",
"license": [ "Apache-2.0" ],
"authors": [
{
"name": "NeutronStars",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"NeutronStars\\Doctrine\\Enum\\Type\\": "src/"
},
"exclude-from-classmap": [
"/tests/"
]
},
"minimum-stability": "stable",
"require": {
"php": "^7.1 | ^8.0",
"doctrine/dbal": "^2.13",
"neutronstars/enum": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "^6.0 | ^7.0 | ^8.0 | ^9.0"
},
"autoload-dev": {
"psr-4": {
"NeutronStars\\Doctrine\\Enum\\Type\\Tests\\": "tests/"
}
}
}