Skip to content

Commit 2fa8c46

Browse files
committed
Update dependencies
1 parent 9d6fd8f commit 2fa8c46

23 files changed

+3139
-988
lines changed

.env.test

-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# define your env variables for the test env here
22
KERNEL_CLASS='App\Kernel'
33
APP_SECRET='$ecretf0rt3st'
4-
SYMFONY_DEPRECATIONS_HELPER=999999
5-
PANTHER_APP_ENV=panther
64
SYMFONY_DOCS_SECRET=''
75
SYMFONY_SECRET=''
86

.gitignore

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
###> symfony/phpunit-bridge ###
2-
.phpunit
3-
.phpunit.result.cache
4-
/phpunit.xml
5-
###< symfony/phpunit-bridge ###
6-
71
###> symfony/framework-bundle ###
82
/.env.local
93
/.env.local.php
@@ -15,3 +9,8 @@
159
###< symfony/framework-bundle ###
1610

1711
.php_cs.cache
12+
13+
###> phpunit/phpunit ###
14+
/phpunit.xml
15+
.phpunit.result.cache
16+
###< phpunit/phpunit ###

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ help:
66
build: test ## Runs test targets
77

88
test: vendor/autoload.php ## Runs tests with phpunit
9-
vendor/bin/simple-phpunit --testsuite Unit
9+
vendor/bin/phpunit --testsuite Unit
1010

1111
vendor/autoload.php:
1212
composer install --no-interaction

bin/phpunit

-13
This file was deleted.

composer.json

+16-14
Original file line numberDiff line numberDiff line change
@@ -11,28 +11,30 @@
1111
"doctrine/doctrine-migrations-bundle": "^3.0",
1212
"doctrine/orm": "^2.7",
1313
"incenteev/composer-parameter-handler": "~2.0",
14-
"knplabs/github-api": "^2.16",
14+
"knplabs/github-api": "^3.2",
1515
"nyholm/psr7": "^1.3",
16-
"sensio/framework-extra-bundle": "^5.1",
17-
"symfony/console": "^5.1",
18-
"symfony/dotenv": "^5.1",
19-
"symfony/flex": "^1.8",
20-
"symfony/framework-bundle": "^5.2@rc",
21-
"symfony/http-client": "^5.2@rc",
22-
"symfony/lock": "^5.2@rc",
16+
"sensio/framework-extra-bundle": "^5.2",
17+
"symfony/console": "^5.2",
18+
"symfony/dotenv": "^5.2",
19+
"symfony/flex": "^1.12",
20+
"symfony/framework-bundle": "^5.2",
21+
"symfony/http-client": "^5.2",
22+
"symfony/lock": "^5.2",
2323
"symfony/monolog-bundle": "~3.5",
24-
"symfony/security-core": "5.1.*",
25-
"symfony/twig-pack": "^1.0",
26-
"symfony/yaml": "^5.1"
24+
"symfony/security-core": "^5.2",
25+
"symfony/twig-bundle": "^5.1",
26+
"symfony/yaml": "^5.2",
27+
"twig/extra-bundle": "^3.3",
28+
"twig/twig": "^3.3"
2729
},
2830
"conflict": {
2931
"symfony/symfony": "*"
3032
},
3133
"require-dev": {
3234
"happyr/service-mocking": "^0.1.3",
33-
"symfony/browser-kit": "^5.1",
34-
"symfony/phpunit-bridge": "^5.1",
35-
"symfony/web-profiler-bundle": "^5.1"
35+
"symfony/browser-kit": "^5.2",
36+
"phpunit/phpunit": "^9.5",
37+
"symfony/web-profiler-bundle": "^5.2"
3638
},
3739
"config": {
3840
"platform": {

0 commit comments

Comments
 (0)