-
- Downloads
test3
Showing
- .github/workflows/audit.yaml 0 additions, 50 deletions.github/workflows/audit.yaml
- .github/workflows/quality.yaml 0 additions, 36 deletions.github/workflows/quality.yaml
- .github/workflows/test.yaml 0 additions, 53 deletions.github/workflows/test.yaml
- .gitlab-ci.yml 40 additions, 0 deletions.gitlab-ci.yml
- assets/app.js 10 additions, 0 deletionsassets/app.js
- assets/bootstrap.js 5 additions, 0 deletionsassets/bootstrap.js
- assets/controllers.json 15 additions, 0 deletionsassets/controllers.json
- assets/controllers/csrf_protection_controller.js 60 additions, 0 deletionsassets/controllers/csrf_protection_controller.js
- assets/controllers/hello_controller.js 16 additions, 0 deletionsassets/controllers/hello_controller.js
- assets/styles/app.css 3 additions, 0 deletionsassets/styles/app.css
- bin/console 21 additions, 0 deletionsbin/console
- bin/phpunit 23 additions, 0 deletionsbin/phpunit
- compose.yaml 69 additions, 0 deletionscompose.yaml
- composer.json 133 additions, 0 deletionscomposer.json
- composer.lock 10219 additions, 0 deletionscomposer.lock
- config/bundles.php 17 additions, 0 deletionsconfig/bundles.php
- config/packages/asset_mapper.yaml 11 additions, 0 deletionsconfig/packages/asset_mapper.yaml
- config/packages/cache.yaml 19 additions, 0 deletionsconfig/packages/cache.yaml
- config/packages/csrf.yaml 11 additions, 0 deletionsconfig/packages/csrf.yaml
- config/packages/debug.yaml 5 additions, 0 deletionsconfig/packages/debug.yaml
.github/workflows/audit.yaml
deleted
100644 → 0
.github/workflows/quality.yaml
deleted
100644 → 0
.github/workflows/test.yaml
deleted
100644 → 0
.gitlab-ci.yml
0 → 100644
assets/app.js
0 → 100644
assets/bootstrap.js
0 → 100644
assets/controllers.json
0 → 100644
assets/controllers/hello_controller.js
0 → 100644
assets/styles/app.css
0 → 100644
bin/console
0 → 100644
bin/phpunit
0 → 100644
compose.yaml
0 → 100644
composer.json
0 → 100644
{ | |||
"type": "project", | |||
"license": "proprietary", | |||
"minimum-stability": "stable", | |||
"prefer-stable": true, | |||
"require": { | |||
"php": ">=8.2", | |||
"ext-ctype": "*", | |||
"ext-iconv": "*", | |||
"doctrine/dbal": "^3", | |||
"doctrine/doctrine-bundle": "^2.13", | |||
"doctrine/doctrine-migrations-bundle": "^3.3", | |||
"doctrine/orm": "^3.3", | |||
"phpdocumentor/reflection-docblock": "^5.6", | |||
"phpstan/phpdoc-parser": "^2.0", | |||
"symfony/asset": "7.2.*", | |||
"symfony/asset-mapper": "7.2.*", | |||
"symfony/console": "7.2.*", | |||
"symfony/doctrine-messenger": "7.2.*", | |||
"symfony/dotenv": "7.2.*", | |||
"symfony/expression-language": "7.2.*", | |||
"symfony/flex": "^2", | |||
"symfony/form": "7.2.*", | |||
"symfony/framework-bundle": "7.2.*", | |||
"symfony/http-client": "7.2.*", | |||
"symfony/intl": "7.2.*", | |||
"symfony/mailer": "7.2.*", | |||
"symfony/mime": "7.2.*", | |||
"symfony/monolog-bundle": "^3.0", | |||
"symfony/notifier": "7.2.*", | |||
"symfony/process": "7.2.*", | |||
"symfony/property-access": "7.2.*", | |||
"symfony/property-info": "7.2.*", | |||
"symfony/runtime": "7.2.*", | |||
"symfony/security-bundle": "7.2.*", | |||
"symfony/serializer": "7.2.*", | |||
"symfony/stimulus-bundle": "^2.22", | |||
"symfony/string": "7.2.*", | |||
"symfony/translation": "7.2.*", | |||
"symfony/twig-bundle": "7.2.*", | |||
"symfony/ux-turbo": "^2.22", | |||
"symfony/validator": "7.2.*", | |||
"symfony/web-link": "7.2.*", | |||
"symfony/yaml": "7.2.*", | |||
"symfonycasts/verify-email-bundle": "^1.17", | |||
"twig/extra-bundle": "^2.12|^3.0", | |||
"twig/twig": "^2.12|^3.0" | |||
}, | |||
"config": { | |||
"allow-plugins": { | |||
"php-http/discovery": true, | |||
"symfony/flex": true, | |||
"symfony/runtime": true | |||
}, | |||
"bump-after-update": 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": "*", | |||
"symfony/polyfill-php82": "*" | |||
}, | |||
"scripts": { | |||
"auto-scripts": { | |||
"cache:clear": "symfony-cmd", | |||
"assets:install %PUBLIC_DIR%": "symfony-cmd", | |||
"importmap:install": "symfony-cmd" | |||
}, | |||
"post-install-cmd": [ | |||
"@auto-scripts" | |||
], | |||
"post-update-cmd": [ | |||
"@auto-scripts" | |||
], | |||
"app:code-quality": [ | |||
"./vendor/bin/ecs check", | |||
"bin/console lint:yaml config --parse-tags", | |||
"bin/console lint:twig templates", | |||
"bin/console lint:container", | |||
"./vendor/bin/phpstan analyse --memory-limit=-1", | |||
"./vendor/bin/rector --dry-run" | |||
], | |||
"app:migration": [ | |||
"bin/console doctrine:migrations:migrate" | |||
], | |||
"app:tests": [ | |||
"bin/console doctrine:database:drop --force --if-exists --env=test", | |||
"bin/console doctrine:database:create --env=test", | |||
"bin/console doctrine:migrations:migrate --no-interaction --allow-no-migration --env=test", | |||
"bin/console cache:clear --env=test", | |||
"bin/phpunit" | |||
] | |||
}, | |||
"conflict": { | |||
"symfony/symfony": "*" | |||
}, | |||
"extra": { | |||
"symfony": { | |||
"allow-contrib": false, | |||
"require": "7.2.*" | |||
} | |||
}, | |||
"require-dev": { | |||
"phpstan/phpstan": "^2.1", | |||
"phpstan/phpstan-doctrine": "^2.0", | |||
"phpstan/phpstan-symfony": "^2.0", | |||
"phpunit/phpunit": "^9.5", | |||
"rector/rector": "^2.0", | |||
"symfony/browser-kit": "7.2.*", | |||
"symfony/css-selector": "7.2.*", | |||
"symfony/debug-bundle": "7.2.*", | |||
"symfony/maker-bundle": "^1.0", | |||
"symfony/phpunit-bridge": "^7.2", | |||
"symfony/stopwatch": "7.2.*", | |||
"symfony/web-profiler-bundle": "7.2.*", | |||
"symplify/easy-coding-standard": "^12.5" | |||
} | |||
} |
composer.lock
0 → 100644
This diff is collapsed.
config/bundles.php
0 → 100644
config/packages/asset_mapper.yaml
0 → 100644
config/packages/cache.yaml
0 → 100644
config/packages/csrf.yaml
0 → 100644
config/packages/debug.yaml
0 → 100644
Please register or sign in to comment