Skip to content

Commit 1abb7b2

Browse files
committed
FEATURE: Make bundle php >= 8 compatible
1 parent 042f064 commit 1abb7b2

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ jobs:
2121
- "7.2"
2222
- "7.3"
2323
- "7.4"
24+
- "8.0"
25+
- "8.1"
26+
- "8.2"
2427
dependencies:
2528
- "highest"
2629
stability:
@@ -36,7 +39,6 @@ jobs:
3639
stability: "stable"
3740
php-version: "7.2"
3841
symfony-deprecations-helper: "weak"
39-
4042
steps:
4143
- name: "Checkout"
4244
uses: "actions/checkout@v2"

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
/vendor/
22
composer.lock
3+
.phpunit.result.cache

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
}
1111
],
1212
"require": {
13-
"php": "^7.2",
13+
"php": "^7.2|^8",
1414
"php-vcr/php-vcr": "^1.5",
1515
"symfony/config": "^4|^5",
1616
"symfony/dependency-injection": "^4|^5",
@@ -21,8 +21,8 @@
2121
"symfony/yaml": "^4|^5"
2222
},
2323
"require-dev": {
24-
"neutron/temporary-filesystem": "^2.3",
25-
"phpunit/phpunit": "^7.5",
24+
"neutron/temporary-filesystem": "^3",
25+
"phpunit/phpunit": "^8.5",
2626
"symfony/framework-bundle": "^4.4|^5.4",
2727
"symfony/phpunit-bridge": "^4.4|^5.4"
2828
},

0 commit comments

Comments
 (0)