Skip to content

Commit c96972c

Browse files
authored
Create composer.json
1 parent ef3115c commit c96972c

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

composer.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "symfony-flex-demo/framework",
3+
"type": "project",
4+
"license": "MIT",
5+
"description": "A minimal Symfony Flex project (script like)",
6+
"require": {
7+
"symfony/flex": "^1.0",
8+
"symfony/framework-bundle": "^3.4 || ^4.0",
9+
},
10+
"require-dev": {
11+
"symfony/dotenv": "^3.4 || ^4.0"
12+
},
13+
"autoload": {
14+
"psr-4": {
15+
"App\\": "src/"
16+
}
17+
},
18+
"scripts": {
19+
"initialize": [
20+
""
21+
],
22+
"security:check": [
23+
"security-checker security:check"
24+
]
25+
},
26+
"conflict": {
27+
"symfony/symfony": "*"
28+
}
29+
}

0 commit comments

Comments
 (0)