Skip to content

Commit

Permalink
Support php 7.4 and drol EOL php 7.1 (#60)
Browse files Browse the repository at this point in the history
Support php 7.4 and drop EOL php 7.1
  • Loading branch information
koriym authored Dec 4, 2019
1 parent 8aebda1 commit e72dc9c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ language: php
sudo: false

php:
- 7.1
- 7.2
- 7.3
- 7.4snapshot

cache:
directories:
Expand Down
11 changes: 6 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ray/compiler",
"version": "1.3.7",
"version": "1.x-dev",
"description": "A dependency injection compiler for Ray.Di",
"keywords": [
"Ray.Di",
Expand All @@ -9,14 +9,14 @@
],
"license": "MIT",
"require": {
"php": ">=7.1.0"
"php": ">=7.2.0"
},
"require-dev": {
"ray/di": "2.x-dev",
"ray/aop": "^2.8.1",
"ray/aop": "^2.9",
"koriym/printo": "^1.0",
"nikic/php-parser": "^4.0",
"phpunit/phpunit": "^6.5"
"phpunit/phpunit": "^7.5"
},
"autoload": {
"psr-4": {
Expand All @@ -34,6 +34,7 @@
"tests": ["@test", "@cs", "phpstan analyse -l max src tests -c phpstan.neon --no-progress"],
"coverage": ["php -dzend_extension=xdebug.so ./vendor/bin/phpunit --coverage-text --coverage-html=build/coverage"],
"cs": ["php-cs-fixer fix -v --dry-run", "phpcs --standard=./phpcs.xml src"],
"cs-fix": ["php-cs-fixer fix -v", "phpcbf src"]
"cs-fix": ["php-cs-fixer fix -v", "phpcbf src"],
"metrics": ["phpmetrics --report-html=build/metrics --excluded-dirs=src/Exception src"]
}
}

0 comments on commit e72dc9c

Please sign in to comment.