-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
39 lines (38 loc) · 1.07 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
38
{
"name": "draw/draw-bundle",
"type": "symfony-bundle",
"description": "Bundle with helper and tool to ease and speed up symfony development ",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "Martin Poirier-Theoret",
"email": "mpoiriert@gmail.com"
}
],
"autoload": {
"psr-4": {
"Draw\\DrawBundle\\": ""
}
},
"require": {
"php": ">=7.2",
"ext-json": "*",
"symfony/config": "^4.0",
"symfony/dependency-injection": "^4.0",
"symfony/http-kernel": "^4.0",
"symfony/yaml": "^4.0"
},
"require-dev": {
"jms/serializer-bundle": "~3.0",
"symfony/property-access": "*",
"sensio/framework-extra-bundle": "^3.0.13|^4.0|^5.0",
"symfony/phpunit-bridge": "^4.2|^5.0",
"doctrine/doctrine-bundle": "*",
"doctrine/dbal": "^2.9",
"doctrine/orm": "^2.6",
"friendsofsymfony/rest-bundle": "^2.0",
"symfony/validator": "^4.0"
}
}