Skip to content
This repository has been archived by the owner on Oct 29, 2020. It is now read-only.

Drop support for PHP < 7.1 #147

Merged
merged 5 commits into from
Nov 13, 2018
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 2 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,21 +26,12 @@ after_script:
- php ./vendor/bin/coveralls -v

matrix:
exclude:
- php: 5.3
dist: trusty
allow_failures:
- php: nightly
include:
- php: 5.3
dist: precise
env: COMPOSER_MEMORY_LIMIT=-1
- php: 5.4
- php: 5.5
- php: 5.6
env: DEPS="dev" COMPOSER_MEMORY_LIMIT=-1
- php: 7.0
- php: 7.1
- php: 7.1
env: DEPS="dev"
- php: 7.2
- php: 7.3
- php: nightly
24 changes: 12 additions & 12 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,20 +32,20 @@
}
],
"require": {
"php": ">=5.3.2",
"symfony/doctrine-bridge": "~2.7|~3.3|~4.0",
"doctrine/inflector": "~1.0",
"php": "^7.1",
"symfony/doctrine-bridge": "^3.4|^4.0",
"doctrine/inflector": "^1.0",
"doctrine/cache": "^1.4.2"
},
"require-dev": {
"phpunit/phpunit": "~4.8.36|~5.6|~6.5|~7.0",
"symfony/phpunit-bridge": "~2.7|~3.3|~4.0",
"symfony/yaml": "~2.7|~3.3|~4.0",
"symfony/validator": "~2.7|~3.3|~4.0",
"symfony/console": "~2.7|~3.3|~4.0",
"symfony/finder": "~2.7|~3.3|~4.0",
"symfony/framework-bundle": "~2.7|~3.3|~4.0",
"symfony/security-acl": "~2.7|~3.3",
"phpunit/phpunit": "^7.0",
"symfony/phpunit-bridge": "^3.4|^4.0",
"symfony/yaml": "^3.4|^4.0",
"symfony/validator": "^3.4|^4.0",
"symfony/console": "^3.4|^4.0",
"symfony/finder": "^3.4|^4.0",
"symfony/framework-bundle": "^3.4|^4.0",
"symfony/security-acl": "^2.8",
alcaeus marked this conversation as resolved.
Show resolved Hide resolved
"instaclick/coding-standard": "~1.1",
"satooshi/php-coveralls": "^1.0",
"squizlabs/php_codesniffer": "~1.5",
Expand All @@ -67,7 +67,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "1.3.x-dev"
"dev-master": "1.4.x-dev"
}
}
}
1 change: 0 additions & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
processIsolation="false"
backupGlobals="false"
stopOnFailure="false"
syntaxCheck="false"
colors="true">

<testsuites>
Expand Down