Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f285645

Browse files
authoredMay 20, 2021
Update dependencies (#172)
1 parent 3214c59 commit f285645

30 files changed

+3159
-1015
lines changed
 

‎.env.test

Lines changed: 0 additions & 2 deletions
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

‎.github/workflows/ci.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ jobs:
1111
test:
1212
name: Test
1313
runs-on: ubuntu-latest
14-
strategy:
15-
fail-fast: false
16-
1714
steps:
1815
- name: Set up PHP
1916
uses: shivammathur/setup-php@2.7.0
@@ -39,17 +36,15 @@ jobs:
3936
composer-
4037
4138
- name: Download dependencies
42-
run: |
43-
composer install --no-interaction --optimize-autoloader
44-
./vendor/bin/simple-phpunit install
39+
run: composer install --no-interaction --optimize-autoloader
4540

4641
- name: Setup database
4742
run: |
4843
bin/console doctrine:database:create
4944
bin/console doctrine:schema:create
5045
5146
- name: Run tests
52-
run: ./vendor/bin/simple-phpunit
47+
run: ./vendor/bin/phpunit
5348

5449
- name: Upload log file
5550
if: ${{ failure() }}

‎.gitignore

Lines changed: 5 additions & 6 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 0 additions & 13 deletions
This file was deleted.

‎composer.json

Lines changed: 16 additions & 14 deletions
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)
Please sign in to comment.