-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
37 lines (37 loc) · 1.19 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
{
"name": "saxulum/saxulum-doctrine-orm-manager-registry-provider",
"description": "Saxulum Doctrine ORM Manager Registry Provider",
"keywords": ["pimple", "silex", "doctrine", "orm", "managerregistry"],
"license": "MIT",
"authors": [
{
"name": "Dominik Zogg",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.3,<8.0",
"pimple/pimple": ">=2.1,<4",
"dflydev/doctrine-orm-service-provider": "~2.0"
},
"require-dev": {
"phpunit/phpunit": "~4.1",
"saxulum/saxulum-console": "~3.1",
"saxulum/saxulum-doctrine-orm-commands": "~1.2",
"silex/api": "2.0.*@dev",
"silex/providers": "2.0.*@dev",
"symfony/doctrine-bridge": "~2.3|~3.0",
"symfony/form": "~2.3|~3.0",
"symfony/validator": "~2.3|~3.0"
},
"suggest": {
"saxulum/saxulum-console": "~3.1",
"saxulum/saxulum-doctrine-orm-commands": "~1.2",
"symfony/doctrine-bridge": "~2.3|~3.0",
"symfony/form": "~2.3|~3.0",
"symfony/validator": "~2.3|~3.0"
},
"autoload": {
"psr-4": { "Saxulum\\DoctrineOrmManagerRegistry\\": "src/" }
}
}