Skip to content

Commit d6c3912

Browse files
authored
Merge pull request #1 from KLab/support-php7
PHP5への互換性を削除 & GitHub ActionsでのPHPStan環境構築
2 parents c369881 + d87240c commit d6c3912

File tree

7 files changed

+1603
-8
lines changed

7 files changed

+1603
-8
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.DS_Store
2+
vendor/

composer.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,13 @@
1010
}
1111
],
1212
"require": {
13-
"php": ">=5.2.3"
13+
"php": ">=7.1"
1414
},
1515
"autoload": {
1616
"classmap": ["lib/SimplePagination"]
17+
},
18+
"require-dev": {
19+
"phpstan/phpstan": "^0.12.0",
20+
"phpunit/phpunit": "^7.5"
1721
}
1822
}

0 commit comments

Comments
 (0)