Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

Commit

Permalink
Move to PHP 7.x (#23)
Browse files Browse the repository at this point in the history
* Update .travis.yml

* Update composer.json
  • Loading branch information
Propaganistas committed Feb 14, 2018
1 parent d44f60f commit 9b69eb1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
15 changes: 6 additions & 9 deletions .travis.yml
@@ -1,8 +1,6 @@
language: php

php:
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
Expand All @@ -14,25 +12,24 @@ cache:
matrix:
fast_finish: true
include:
- php: 5.6
- php: 7.0 # Laravel 5.0 requires Mcrypt, but it is deprecated as of PHP 7.1
env: ILLUMINATE_VERSION=5.0.* TESTBENCH_VERSION=3.0.* PHPUNIT_VERSION=4.*
- php: 7.1
- php: 7.2
env: ILLUMINATE_VERSION=5.1.* TESTBENCH_VERSION=3.1.* PHPUNIT_VERSION=5.*
- php: 7.1
- php: 7.2
env: ILLUMINATE_VERSION=5.2.* TESTBENCH_VERSION=3.2.* PHPUNIT_VERSION=5.*
- php: 7.1
- php: 7.2
env: ILLUMINATE_VERSION=5.3.* TESTBENCH_VERSION=3.3.* PHPUNIT_VERSION=5.*
- php: 7.1
- php: 7.2
env: ILLUMINATE_VERSION=5.4.* TESTBENCH_VERSION=3.4.* PHPUNIT_VERSION=5.*
- php: 7.1
- php: 7.2
env: ILLUMINATE_VERSION=5.5.* TESTBENCH_VERSION=3.5.* PHPUNIT_VERSION=6.*
- php: 7.2
env: ILLUMINATE_VERSION=5.6.* TESTBENCH_VERSION=3.6.* PHPUNIT_VERSION=7.*

sudo: false

before_install:
- composer self-update
# Disable XDebug to speed up Composer.
- cp $HOME/.phpenv/versions/$(phpenv global)/etc/conf.d/xdebug.ini /tmp
- phpenv config-rm xdebug.ini
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.5",
"php": ">=7.0",
"laravel/framework": ">=5.0,<5.7",
"jenssegers/optimus": "^0.2.2",
"phpseclib/phpseclib": "^2.0"
Expand Down

0 comments on commit 9b69eb1

Please sign in to comment.