-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.51 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "symfony-flex-demo/orm",
"type": "project",
"license": "MIT",
"description": "A minimal ORM Flex project",
"require": {
"sensio/framework-extra-bundle": "^5.1",
"symfony/console": "^3.4 || ^4.0",
"symfony/flex": "^1.0",
"symfony/form": "^3.4 || ^4.0",
"symfony/orm-pack": "^1.0",
"symfony/security-csrf": "^3.4 || ^4.0",
"symfony/twig-bundle": "^3.4 || ^4.0",
"symfony/validator": "^3.4 || ^4.0",
"symfony/yaml": "^3.4 || ^4.0"
},
"require-dev": {
"symfony/dotenv": "^3.4 || ^4.0",
"symfony/maker-bundle": "^1.0",
"symfony/profiler-pack": "^1.0",
"symfony/web-server-bundle": "^3.4 || ^4.0"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"bin": ["bin/console"],
"config": {
"bin-dir": "bin"
},
"scripts": {
"console": [
"console"
],
"initialize": [
"console doctrine:database:create",
"console doctrine:migrations:diff --quiet",
"console doctrine:migrations:migrate --no-interaction --quiet",
"console make:crud Author",
"console make:crud BlogPost"
],
"security:check": [
"security-checker security:check"
],
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
}
}