Skip to content

Commit 072f851

Browse files
authored
Merge pull request #67 from vector-php/lh-php-7.4
WIP: Upgrade to 7.4
2 parents 478a66a + b6dfd95 commit 072f851

61 files changed

Lines changed: 1566 additions & 2472 deletions

Some content is hidden

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

.github/workflows/php.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,17 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v1
12-
- uses: docker://phpearth/php:7.4-cli
13-
11+
- name: Checkout
12+
uses: actions/checkout@master
13+
- name: Setup PHP
14+
uses: shivammathur/setup-php@master
15+
with:
16+
php-version: '7.4'
17+
extension-csv: mbstring, dom
18+
- name: Check PHP Version
19+
run: php -v
1420
- name: Validate composer.json and composer.lock
1521
run: composer validate
16-
1722
- name: Install dependencies
1823
run: composer install --prefer-dist --no-progress --no-suggest
1924

.travis.yml

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

composer.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"keywords": ["utility", "functional", "monad", "compose", "curry"],
1212
"license": "MIT",
1313
"require-dev": {
14-
"phpunit/phpunit": "^6.2"
14+
"phpunit/phpunit": "^8.4"
1515
},
1616
"autoload": {
1717
"psr-4": {
@@ -20,9 +20,7 @@
2020
}
2121
},
2222
"require": {
23-
"php": "^7.0",
24-
"phpdocumentor/reflection-docblock": "^3.2",
25-
"satooshi/php-coveralls": "^1.0"
23+
"php": "^7.4"
2624
},
2725
"scripts": {
2826
"runTests": "./scripts/runTests.sh",

0 commit comments

Comments
 (0)