symfony scaffolding
Showing
.env
0 → 100644
.env.test
0 → 100644
bin/console
0 → 100644
composer.json
0 → 100644
{ | |||
"type": "project", | |||
"license": "proprietary", | |||
"require": { | |||
"php": "^7.2.5", | |||
"ext-ctype": "*", | |||
"ext-iconv": "*", | |||
"sensio/framework-extra-bundle": "^5.1", | |||
"symfony/asset": "5.0.*", | |||
"symfony/console": "5.0.*", | |||
"symfony/dotenv": "5.0.*", | |||
"symfony/expression-language": "5.0.*", | |||
"symfony/flex": "^1.3.1", | |||
"symfony/form": "5.0.*", | |||
"symfony/framework-bundle": "5.0.*", | |||
"symfony/http-client": "5.0.*", | |||
"symfony/intl": "5.0.*", | |||
"symfony/mailer": "5.0.*", | |||
"symfony/monolog-bundle": "^3.1", | |||
"symfony/notifier": "5.0.*", | |||
"symfony/orm-pack": "*", | |||
"symfony/process": "5.0.*", | |||
"symfony/security-bundle": "5.0.*", | |||
"symfony/serializer-pack": "*", | |||
"symfony/string": "5.0.*", | |||
"symfony/translation": "5.0.*", | |||
"symfony/twig-pack": "*", | |||
"symfony/validator": "5.0.*", | |||
"symfony/web-link": "5.0.*", | |||
"symfony/yaml": "5.0.*" | |||
}, | |||
"require-dev": { | |||
"symfony/debug-pack": "*", | |||
"symfony/maker-bundle": "^1.0", | |||
"symfony/profiler-pack": "*", | |||
"symfony/test-pack": "*" | |||
}, | |||
"config": { | |||
"preferred-install": { | |||
"*": "dist" | |||
}, | |||
"sort-packages": true | |||
}, | |||
"autoload": { | |||
"psr-4": { | |||
"App\\": "src/" | |||
} | |||
}, | |||
"autoload-dev": { | |||
"psr-4": { | |||
"App\\Tests\\": "tests/" | |||
} | |||
}, | |||
"replace": { | |||
"paragonie/random_compat": "2.*", | |||
"symfony/polyfill-ctype": "*", | |||
"symfony/polyfill-iconv": "*", | |||
"symfony/polyfill-php72": "*", | |||
"symfony/polyfill-php71": "*", | |||
"symfony/polyfill-php70": "*", | |||
"symfony/polyfill-php56": "*" | |||
}, | |||
"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": "5.0.*" | |||
} | |||
} | |||
} |
composer.lock
0 → 100644
This diff is collapsed.
config/bootstrap.php
0 → 100644
config/bundles.php
0 → 100644
config/packages/cache.yaml
0 → 100644
config/packages/mailer.yaml
0 → 100644
config/packages/routing.yaml
0 → 100644
config/packages/twig.yaml
0 → 100644
config/routes.yaml
0 → 100644
config/services.yaml
0 → 100644
phpunit.xml.dist
0 → 100644
public/index.php
0 → 100644
src/Controller/.gitignore
0 → 100644
src/Entity/.gitignore
0 → 100644
src/Kernel.php
0 → 100644
src/Migrations/.gitignore
0 → 100644
src/Repository/.gitignore
0 → 100644
symfony.lock
0 → 100644
This diff is collapsed.
templates/base.html.twig
0 → 100644
tests/bootstrap.php
0 → 100644
translations/.gitignore
0 → 100644
Please register or sign in to comment