Skip to content

Commit d7654bb

Browse files
authored
Merge pull request #70 from vector-php/lh-php8
2 parents b6d4d41 + 97fcce2 commit d7654bb

40 files changed

Lines changed: 1582 additions & 1131 deletions

.github/workflows/php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Setup PHP
1414
uses: shivammathur/setup-php@master
1515
with:
16-
php-version: '7.4'
16+
php-version: '8.0'
1717
extension-csv: mbstring, dom
1818
- name: Check PHP Version
1919
run: php -v

changelog.md

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

composer.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
{
22
"name": "vector/core",
33
"authors": [
4+
{
5+
"name": "Logan Henson",
6+
"email": "logan@loganhenson.com"
7+
},
48
{
59
"name": "Joseph Walker",
610
"email": "joseph.walker@outlook.com"
@@ -10,17 +14,20 @@
1014
"type": "library",
1115
"keywords": ["utility", "functional", "monad", "compose", "curry"],
1216
"license": "MIT",
17+
"minimum-stability": "dev",
18+
"prefer-stable": true,
1319
"require-dev": {
14-
"phpunit/phpunit": "^8.4"
20+
"phpunit/phpunit": "^9.0"
1521
},
1622
"autoload": {
1723
"psr-4": {
1824
"Vector\\": "src/",
1925
"Vector\\Test\\": "tests/"
20-
}
26+
},
27+
"files": ["src/helpers.php"]
2128
},
2229
"require": {
23-
"php": "^7.4"
30+
"php": "^8.0"
2431
},
2532
"scripts": {
2633
"runTests": "./scripts/runTests.sh",

0 commit comments

Comments
 (0)