Add initial set of files
parents
Showing
.env
0 → 100644
.env.dev
0 → 100644
.gitignore
0 → 100644
bin/console
0 → 100755
composer.json
0 → 100644
| { | ||
| "type": "project", | ||
| "license": "proprietary", | ||
| "minimum-stability": "stable", | ||
| "prefer-stable": true, | ||
| "require": { | ||
| "php": ">=8.1", | ||
| "ext-ctype": "*", | ||
| "ext-iconv": "*", | ||
| "symfony/console": "6.4.*", | ||
| "symfony/dotenv": "6.4.*", | ||
| "symfony/flex": "^2", | ||
| "symfony/framework-bundle": "6.4.*", | ||
| "symfony/runtime": "6.4.*", | ||
| "symfony/yaml": "6.4.*" | ||
| }, | ||
| "require-dev": { | ||
| }, | ||
| "config": { | ||
| "allow-plugins": { | ||
| "php-http/discovery": true, | ||
| "symfony/flex": true, | ||
| "symfony/runtime": true | ||
| }, | ||
| "sort-packages": true | ||
| }, | ||
| "autoload": { | ||
| "psr-4": { | ||
| "App\\": "src/" | ||
| } | ||
| }, | ||
| "autoload-dev": { | ||
| "psr-4": { | ||
| "App\\Tests\\": "tests/" | ||
| } | ||
| }, | ||
| "replace": { | ||
| "symfony/polyfill-ctype": "*", | ||
| "symfony/polyfill-iconv": "*", | ||
| "symfony/polyfill-php72": "*", | ||
| "symfony/polyfill-php73": "*", | ||
| "symfony/polyfill-php74": "*", | ||
| "symfony/polyfill-php80": "*", | ||
| "symfony/polyfill-php81": "*" | ||
| }, | ||
| "scripts": { | ||
| "auto-scripts": { | ||
| "cache:clear": "symfony-cmd", | ||
| "assets:install %PUBLIC_DIR%": "symfony-cmd" | ||
| }, | ||
| "post-install-cmd": [ | ||
| "@auto-scripts" | ||
| ], | ||
| "post-update-cmd": [ | ||
| "@auto-scripts" | ||
| ] | ||
| }, | ||
| "conflict": { | ||
| "symfony/symfony": "*" | ||
| }, | ||
| "extra": { | ||
| "symfony": { | ||
| "allow-contrib": false, | ||
| "require": "6.4.*" | ||
| } | ||
| } | ||
| } |
composer.lock
0 → 100644
This diff is collapsed.
config/bundles.php
0 → 100644
config/packages/cache.yaml
0 → 100644
config/packages/routing.yaml
0 → 100644
config/preload.php
0 → 100644
config/routes.yaml
0 → 100644
config/routes/framework.yaml
0 → 100644
config/services.yaml
0 → 100644
public/index.php
0 → 100644
src/Controller/.gitignore
0 → 100644
src/Kernel.php
0 → 100644
symfony.lock
0 → 100644
Please register or sign in to comment