Skip to content

Commit

Permalink
- php7.2 is now supported (#133)
Browse files Browse the repository at this point in the history
*  - updated for php7.2
  • Loading branch information
imunhatep authored Apr 30, 2018
1 parent 83ff38d commit e11d84e
Show file tree
Hide file tree
Showing 23 changed files with 186 additions and 1,515 deletions.
6 changes: 2 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,13 @@ language: php

matrix:
include:
- php: 5.3
- php: 7.0
dist: precise

php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2

before_script:
- curl -s https://getcomposer.org/installer | php
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ The api is completely transparent to the end user. You don't have to worry about
Requirements
------------

- php >= 5.3.0
- php >= 7.0.0
- *nix system with git installed

I work on linux, but the lib should work well with every unix system, as far as a git binary is available.
Expand Down
15 changes: 5 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,20 @@
}
],
"require": {
"php": ">=5.3.3",
"symfony/process": "~2.0|~3.0",
"symfony/filesystem": "~2.0|~3.0",
"symfony/finder": "~2.0|~3.0",
"php": ">=7.0.0",
"symfony/process": "~2.0|~3.0|~4.0",
"symfony/filesystem": "~2.0|~3.0|~4.0",
"symfony/finder": "~2.0|~3.0|~4.0",
"phpcollection/phpcollection": "~0.4"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"phpunit/phpunit": "~6.0",
"mockery/mockery": "~0.9"
},
"minimum-stability": "stable",
"autoload": {
"psr-0": {
"GitElephant": "src/"
}
},
"config": {
"platform": {
"php": "5.3.3"
}
}
}
Loading

0 comments on commit e11d84e

Please sign in to comment.