Skip to content

Commit 7db694c

Browse files
authored
Merge pull request #623 from Roave/feature/#571-upgrade-to-php-7.4
#571 upgrade to php 7.4
2 parents 98870a8 + 93e3ba6 commit 7db694c

File tree

172 files changed

+1257
-1511
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

172 files changed

+1257
-1511
lines changed

.github/workflows/benchmarks.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ jobs:
3434
coverage: "pcov"
3535
php-version: "${{ matrix.php-version }}"
3636
ini-values: memory_limit=-1
37-
extensions: mbstring
3837

3938
- name: "Cache dependencies"
4039
uses: "actions/cache@v2"

.github/workflows/coding-standards.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ jobs:
3333
coverage: "pcov"
3434
php-version: "${{ matrix.php-version }}"
3535
ini-values: memory_limit=-1
36-
extensions: mbstring
3736

3837
- name: "Cache dependencies"
3938
uses: "actions/cache@v2"

.github/workflows/compatibility.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919
dependencies:
2020
- "locked"
2121
php-version:
22-
- "7.3"
2322
- "7.4"
2423
operating-system:
2524
- "ubuntu-latest"
@@ -35,7 +34,6 @@ jobs:
3534
coverage: "pcov"
3635
php-version: "${{ matrix.php-version }}"
3736
ini-values: memory_limit=-1
38-
extensions: mbstring
3937

4038
- name: "Cache dependencies"
4139
uses: "actions/cache@v2"

.github/workflows/demo-scripts.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ jobs:
3333
coverage: "pcov"
3434
php-version: "${{ matrix.php-version }}"
3535
ini-values: memory_limit=-1
36-
extensions: mbstring
3736

3837
- name: "Cache dependencies"
3938
uses: "actions/cache@v2"

.github/workflows/mutation-tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ jobs:
3333
coverage: "pcov"
3434
php-version: "${{ matrix.php-version }}"
3535
ini-values: memory_limit=-1
36-
extensions: mbstring
3736

3837
- name: "Cache dependencies"
3938
uses: "actions/cache@v2"

.github/workflows/phpstan.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ jobs:
3333
coverage: "pcov"
3434
php-version: "${{ matrix.php-version }}"
3535
ini-values: memory_limit=-1
36-
extensions: mbstring
3736

3837
- name: "Cache dependencies"
3938
uses: "actions/cache@v2"

.github/workflows/phpunit.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ jobs:
2121
- "highest"
2222
- "locked"
2323
php-version:
24-
- "7.3"
2524
- "7.4"
2625
operating-system:
2726
- "ubuntu-latest"
@@ -37,7 +36,6 @@ jobs:
3736
coverage: "pcov"
3837
php-version: "${{ matrix.php-version }}"
3938
ini-values: memory_limit=-1
40-
extensions: mbstring
4139

4240
- name: "Cache dependencies"
4341
uses: "actions/cache@v2"

.github/workflows/psalm.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ jobs:
3333
coverage: "pcov"
3434
php-version: "${{ matrix.php-version }}"
3535
ini-values: memory_limit=-1
36-
extensions: mbstring
3736

3837
- name: "Cache dependencies"
3938
uses: "actions/cache@v2"

composer.json

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Better Reflection - an improved code reflection API",
44
"license": "MIT",
55
"require": {
6-
"php": ">=7.3.0,<7.5.0",
6+
"php": ">=7.4.1,<7.5.0",
77
"ext-json": "*",
88
"jetbrains/phpstorm-stubs": "2019.3",
99
"nikic/php-parser": "^4.4.0",
@@ -37,7 +37,7 @@
3737
"require-dev": {
3838
"doctrine/coding-standard": "^7.0.2",
3939
"phpstan/phpstan": "^0.12.25",
40-
"phpunit/phpunit": "^8.5.4",
40+
"phpunit/phpunit": "^9.1.5",
4141
"vimeo/psalm": "3.11.2",
4242
"infection/infection": "^0.16.3"
4343
},
@@ -60,11 +60,6 @@
6060
"dev-master": "4.0-dev"
6161
}
6262
},
63-
"config": {
64-
"platform": {
65-
"php": "7.3.0"
66-
}
67-
},
6863
"minimum-stability": "dev",
6964
"prefer-stable": true
7065
}

0 commit comments

Comments
 (0)