Skip to content

Commit b857dc2

Browse files
committed
Add initial set of files
0 parents  commit b857dc2

File tree

16 files changed

+2787
-0
lines changed

16 files changed

+2787
-0
lines changed

.editorconfig

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
end_of_line = lf
8+
indent_size = 4
9+
indent_style = space
10+
insert_final_newline = true
11+
trim_trailing_whitespace = true
12+
13+
[{compose.yaml,compose.*.yaml}]
14+
indent_size = 2
15+
16+
[*.md]
17+
trim_trailing_whitespace = false

.env.dev

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
###> symfony/framework-bundle ###
3+
APP_SECRET=8aa652b51b8b8226a4f78902fa4ad0ca
4+
###< symfony/framework-bundle ###

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
###> symfony/framework-bundle ###
3+
/.env.local
4+
/.env.local.php
5+
/.env.*.local
6+
/config/secrets/prod/prod.decrypt.private.php
7+
/public/bundles/
8+
/var/
9+
/vendor/
10+
###< symfony/framework-bundle ###

composer.json

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
{
2+
"type": "project",
3+
"license": "proprietary",
4+
"minimum-stability": "stable",
5+
"prefer-stable": true,
6+
"require": {
7+
"php": ">=8.2",
8+
"ext-ctype": "*",
9+
"ext-iconv": "*",
10+
"symfony/console": "7.3.*",
11+
"symfony/dotenv": "7.3.*",
12+
"symfony/flex": "^2",
13+
"symfony/framework-bundle": "7.3.*",
14+
"symfony/runtime": "7.3.*",
15+
"symfony/yaml": "7.3.*"
16+
},
17+
"require-dev": {
18+
},
19+
"config": {
20+
"allow-plugins": {
21+
"php-http/discovery": true,
22+
"symfony/flex": true,
23+
"symfony/runtime": true
24+
},
25+
"bump-after-update": true,
26+
"sort-packages": true
27+
},
28+
"autoload": {
29+
"psr-4": {
30+
"App\\": "src/"
31+
}
32+
},
33+
"autoload-dev": {
34+
"psr-4": {
35+
"App\\Tests\\": "tests/"
36+
}
37+
},
38+
"replace": {
39+
"symfony/polyfill-ctype": "*",
40+
"symfony/polyfill-iconv": "*",
41+
"symfony/polyfill-php72": "*",
42+
"symfony/polyfill-php73": "*",
43+
"symfony/polyfill-php74": "*",
44+
"symfony/polyfill-php80": "*",
45+
"symfony/polyfill-php81": "*",
46+
"symfony/polyfill-php82": "*"
47+
},
48+
"scripts": {
49+
"auto-scripts": {
50+
"cache:clear": "symfony-cmd",
51+
"assets:install %PUBLIC_DIR%": "symfony-cmd"
52+
},
53+
"post-install-cmd": [
54+
"@auto-scripts"
55+
],
56+
"post-update-cmd": [
57+
"@auto-scripts"
58+
]
59+
},
60+
"conflict": {
61+
"symfony/symfony": "*"
62+
},
63+
"extra": {
64+
"symfony": {
65+
"allow-contrib": false,
66+
"require": "7.3.*"
67+
}
68+
}
69+
}

0 commit comments

Comments
 (0)