Skip to content

Commit 96c58c6

Browse files
committed
Merge branch 'v4'
2 parents 6a4ce6f + e832d77 commit 96c58c6

26 files changed

+4033
-637
lines changed

.env.test

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# define your env variables for the test env here
2+
KERNEL_CLASS='App\Kernel'
3+
APP_SECRET='$ecretf0rt3st'
4+
SYMFONY_DEPRECATIONS_HELPER=999999
5+
PANTHER_APP_ENV=panther
6+
PANTHER_ERROR_SCREENSHOT_DIR=./var/error-screenshots

.gitignore

+10
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,13 @@
2323
/var/
2424
/vendor/
2525
###< symfony/framework-bundle ###
26+
27+
###> friendsofphp/php-cs-fixer ###
28+
/.php-cs-fixer.php
29+
/.php-cs-fixer.cache
30+
###< friendsofphp/php-cs-fixer ###
31+
32+
###> symfony/phpunit-bridge ###
33+
.phpunit.result.cache
34+
/phpunit.xml
35+
###< symfony/phpunit-bridge ###

.php-cs-fixer.dist.php

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
$finder = (new PhpCsFixer\Finder())
4+
->in(__DIR__)
5+
->exclude('var')
6+
;
7+
8+
return (new PhpCsFixer\Config())
9+
->setRules([
10+
'@Symfony' => true,
11+
])
12+
->setFinder($finder)
13+
;

composer.json

+13-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"minimum-stability": "stable",
77
"prefer-stable": true,
88
"require": {
9-
"php": "^7.4 || ^8.0",
9+
"php": "^8.0",
1010
"ext-ctype": "*",
1111
"ext-iconv": "*",
1212
"composer/package-versions-deprecated": "1.11.99.4",
@@ -18,16 +18,24 @@
1818
"symfony/flex": "^1.17.1 || ^2",
1919
"symfony/framework-bundle": "^5.4",
2020
"symfony/runtime": "^5.4",
21+
"symfony/security-bundle": "^5.4",
2122
"symfony/twig-bundle": "^5.4",
2223
"symfony/yaml": "^5.4",
23-
"symfony/security-bundle": "^5.4",
2424
"vich/uploader-bundle": "^1.19"
2525
},
2626
"require-dev": {
2727
"doctrine/doctrine-fixtures-bundle": "^3.0",
28+
"friendsofphp/php-cs-fixer": "^3.8",
29+
"phpstan/phpstan": "^1.5",
30+
"phpunit/phpunit": "^9.5",
31+
"symfony/browser-kit": "5.4.*",
32+
"symfony/css-selector": "5.4.*",
33+
"symfony/debug-bundle": "5.4.*",
34+
"symfony/maker-bundle": "^1.36",
35+
"symfony/monolog-bundle": "^3.0",
36+
"symfony/phpunit-bridge": "^6.0",
2837
"symfony/stopwatch": "^5.4",
29-
"symfony/web-profiler-bundle": "^5.4",
30-
"symfony/maker-bundle": "^1.36"
38+
"symfony/web-profiler-bundle": "^5.4"
3139
},
3240
"config": {
3341
"allow-plugins": {
@@ -37,6 +45,7 @@
3745
},
3846
"optimize-autoloader": true,
3947
"preferred-install": {
48+
"hackzilla/ticket-bundle": "source",
4049
"*": "dist"
4150
},
4251
"sort-packages": true

0 commit comments

Comments
 (0)