-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 867 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 867 Bytes
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
{
"name": "lamoda/enum-bundle",
"type": "symfony-bundle",
"description": "Utility wrapper around PHP-enum",
"license": "MIT",
"authors": [
{
"name": "Pavel Batanov",
"email": "pavel.batanov@lamoda.ru",
"role": "Developer"
}
],
"require": {
"php": "^7.1 || ^8.0",
"paillechat/php-enum": "^1.2 || ^2.1",
"symfony/http-kernel": "^3.4 || ^4.0 || ^5.0 || ^6.0",
"symfony/dependency-injection": "^3.4 || ^4.0 || ^5.0 || ^6.0",
"symfony/config": "^3.4 || ^4.0 || ^5.0 || ^6.0",
"doctrine/dbal": "^2.11 || ^3.2"
},
"require-dev": {
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
"symfony/yaml": "^3.4 || ^4.0 || ^5.0 || ^6.0"
},
"autoload": {
"psr-4": {
"Lamoda\\EnumBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lamoda\\EnumBundle\\Tests\\": "tests/"
}
}
}