Skip to content

Commit f78b0ec

Browse files
authored
Create composer.json
1 parent 53291cd commit f78b0ec

File tree

1 file changed

+56
-0
lines changed

1 file changed

+56
-0
lines changed

composer.json

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
{
2+
"name": "symfony-flex-demo/orm",
3+
"type": "project",
4+
"license": "MIT",
5+
"description": "A minimal ORM Flex project",
6+
"require": {
7+
"sensio/framework-extra-bundle": "^5.1",
8+
"symfony/console": "^3.4 || ^4.0",
9+
"symfony/flex": "^1.0",
10+
"symfony/form": "^3.4 || ^4.0",
11+
"symfony/orm-pack": "^1.0",
12+
"symfony/security-csrf": "^3.4 || ^4.0",
13+
"symfony/twig-bundle": "^3.4 || ^4.0",
14+
"symfony/validator": "^3.4 || ^4.0",
15+
"symfony/yaml": "^3.4 || ^4.0"
16+
},
17+
"require-dev": {
18+
"symfony/dotenv": "^3.4 || ^4.0",
19+
"symfony/maker-bundle": "^1.0",
20+
"symfony/profiler-pack": "^1.0",
21+
"symfony/web-server-bundle": "^3.4 || ^4.0"
22+
},
23+
"autoload": {
24+
"psr-4": {
25+
"App\\": "src/"
26+
}
27+
},
28+
"bin": ["bin/console"],
29+
"config": {
30+
"bin-dir": "bin"
31+
},
32+
"scripts": {
33+
"console": [
34+
"console"
35+
],
36+
"initialize": [
37+
"console doctrine:database:create",
38+
"console doctrine:migrations:diff --quiet",
39+
"console doctrine:migrations:migrate --no-interaction --quiet",
40+
"console make:crud Author",
41+
"console make:crud BlogPost"
42+
],
43+
"security:check": [
44+
"security-checker security:check"
45+
],
46+
"post-install-cmd": [
47+
"@auto-scripts"
48+
],
49+
"post-update-cmd": [
50+
"@auto-scripts"
51+
]
52+
},
53+
"conflict": {
54+
"symfony/symfony": "*"
55+
}
56+
}

0 commit comments

Comments
 (0)