Skip to content

Commit

Permalink
Merge pull request #11 from stof/clean_project
Browse files Browse the repository at this point in the history
Drop support for unmaintained versions of Symfony and PHP
  • Loading branch information
stof committed Mar 17, 2020
2 parents e8ed03e + c78bbe4 commit f5c96ca
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 18 deletions.
14 changes: 4 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,31 +1,25 @@
language: php

sudo: false

env:
global:
- SYMFONY_PHPUNIT_REMOVE=symfony/yaml

php:
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4snapshot
- 7.4

matrix:
fast_finish: true
include:
- php: 7.0
- php: 7.2
env: COMPOSER_FLAGS="--prefer-lowest" SYMFONY_DEPRECATIONS_HELPER=weak
# Test LTS versions
- php: 7.1
- php: 7.2
env: DEPENDENCIES="dunglas/symfony-lock:^3"
# Test unstable versions
- php: 7.3
- php: 7.4
env: STABILITY="dev"
allow_failures:
- php: 7.4snapshot

cache:
directories:
Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
}
],
"require": {
"php": "^7.0",
"symfony/asset": "^3.2 || ^4.0 || ^5.0",
"symfony/cache": "^3.2 || ^4.0 || ^5.0",
"symfony/config": "^3.2 || ^4.0 || ^5.0",
"symfony/dependency-injection": "^3.2 || ^4.0 || ^5.0",
"symfony/finder": "^3.2 || ^4.0 || ^5.0",
"symfony/framework-bundle": "^3.2 || ^4.0 || ^5.0",
"symfony/http-kernel": "^3.2 || ^4.0 || ^5.0"
"php": "^7.2",
"symfony/asset": "^3.4.36 || ^4.3 || ^5.0",
"symfony/cache": "3.4.36 || ^4.3 || ^5.0",
"symfony/config": "3.4.36 || ^4.3 || ^5.0",
"symfony/dependency-injection": "3.4.36 || ^4.3 || ^5.0",
"symfony/finder": "3.4.36 || ^4.3 || ^5.0",
"symfony/framework-bundle": "3.4.36 || ^4.3 || ^5.0",
"symfony/http-kernel": "3.4.36 || ^4.3 || ^5.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^5.0"
Expand Down

0 comments on commit f5c96ca

Please sign in to comment.