Skip to content

Commit

Permalink
Bump dependencies (#1111)
Browse files Browse the repository at this point in the history
- Remove support for PHP 8.0
- Remove support for Symfony 4.4
  • Loading branch information
theofidry authored Jul 3, 2022
1 parent d523af2 commit 4ea93c8
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 22 deletions.
10 changes: 0 additions & 10 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,9 @@ jobs:
fail-fast: false
matrix:
php:
- '8.0'
- '8.1'
symfony-versions: [false]
include:
- description: 'Symfony 4.4'
php: '8.0'
symfony-versions: 4.4.*
- description: 'Symfony 5.4'
php: '8.0'
symfony-versions: 5.4.*
- description: 'Symfony 6.0'
php: '8.0'
symfony-versions: 6.0.*
- description: 'Symfony 5.4'
php: '8.1'
symfony-versions: 5.4.*
Expand Down
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,27 +20,27 @@
],

"require": {
"php": "^8.0",
"php": "^8.1",
"fakerphp/faker": "^1.10",
"myclabs/deep-copy": "^1.10",
"sebastian/comparator": "^3.0 || ^4.0",
"symfony/property-access": "^4.4 || ^5.4 || ^6.0",
"symfony/yaml": "^4.4 || ^5.4 || ^6.0"
"symfony/property-access": "^5.4 || ^6.0",
"symfony/yaml": "^5.4 || ^6.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4.1",
"phpspec/prophecy": "^1.6",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.3",
"symfony/config": "^4.4 || ^5.4 || ^6.0",
"symfony/dependency-injection": "^4.4 || ^5.4 || ^6.0",
"symfony/finder": "^4.4 || ^5.4 || ^6.0",
"symfony/http-kernel": "^4.4 || ^5.4 || ^6.0",
"symfony/config": "^5.4 || ^6.0",
"symfony/dependency-injection": "^5.4 || ^6.0",
"symfony/finder": "^5.4 || ^6.0",
"symfony/http-kernel": "^5.4 || ^6.0",
"symfony/phpunit-bridge": "^5.4 || ^6.0",
"symfony/var-dumper": "^4.4 || ^5.4 || ^6.0"
"symfony/var-dumper": "^5.4 || ^6.0"
},
"conflict": {
"symfony/framework-bundle": "<4.4 || >=5.0.0,<5.2.0"
"symfony/framework-bundle": "<5.4.0"
},

"autoload": {
Expand Down
7 changes: 6 additions & 1 deletion vendor-bin/infection/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
},
"config": {
"bin-dir": "bin",
"sort-packages": true
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"wikimedia/composer-merge-plugin": true,
"theofidry/composer-inheritance-plugin": true
}
}
}
6 changes: 5 additions & 1 deletion vendor-bin/profiling/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
},
"config": {
"bin-dir": "bin",
"sort-packages": true
"sort-packages": true,
"allow-plugins": {
"wikimedia/composer-merge-plugin": true,
"theofidry/composer-inheritance-plugin": true
}
}
}
6 changes: 5 additions & 1 deletion vendor-bin/symfony/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
},
"config": {
"bin-dir": "bin",
"sort-packages": true
"sort-packages": true,
"allow-plugins": {
"wikimedia/composer-merge-plugin": true,
"theofidry/composer-inheritance-plugin": true
}
}
}

0 comments on commit 4ea93c8

Please sign in to comment.