-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (43 loc) · 992 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
43
44
{
"name": "digitalascetic/shared-entity",
"version": "1.0.9",
"license": "MIT",
"type": "library",
"description": "Digital Ascetic Shared Entity Bundle",
"authors": [
{
"name": "Martino Piccinato",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"": "src/"
}
},
"autoload-dev": {
"psr-4": {
"": "src/",
"DigitalAscetic\\CommonsBundle\\Test\\": "tests/"
},
"files": [
"tests/Functional/AppKernel.php"
]
},
"require": {
"php": ">=5.6",
"doctrine/orm": "^2.5",
"doctrine/doctrine-bundle": "~1.6",
"sensio/framework-extra-bundle": "^3.0.2",
"symfony/symfony": "^3.2",
"jms/serializer-bundle": "1.1.*",
"symfony/monolog-bundle": "^2.8"
},
"require-dev": {
"sensio/generator-bundle": "^3.0",
"phpunit/phpunit": "5.7.*",
"symfony/phpunit-bridge": "3.2.*",
"liip/functional-test-bundle": "1.7.x",
"doctrine/doctrine-fixtures-bundle": "2.3.*"
}
}