Skip to content
This repository was archived by the owner on Jul 2, 2021. It is now read-only.

Commit 67746ae

Browse files
authored
Update supported-versions and dependencies to supported versions (#9)
1 parent ed97ff6 commit 67746ae

File tree

4 files changed

+20
-16
lines changed

4 files changed

+20
-16
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/build/
22
/vendor/
33

4+
.phpunit.result.cache
45
.php_cs.cache
56
composer.lock
67
php-cs-fixer

.travis.yml

+11-8
Original file line numberDiff line numberDiff line change
@@ -8,28 +8,31 @@ cache:
88
matrix:
99
fast_finish: true
1010
include:
11-
- php: 7.1
12-
env: SYMFONY_VERSION=2.8.*
1311
- php: 7.1
1412
env: SYMFONY_VERSION=3.4.*
15-
- php: 7.1
16-
env: SYMFONY_VERSION=4.0.*
1713
- php: 7.1
1814
env: SYMFONY_VERSION=4.1.*
19-
- php: 7.2
20-
env: SYMFONY_VERSION=2.8.*
15+
- php: 7.1
16+
env: SYMFONY_VERSION=4.2.*
2117
- php: 7.2
2218
env: SYMFONY_VERSION=3.4.*
2319
- php: 7.2
24-
env: SYMFONY_VERSION=4.0.*
20+
env: SYMFONY_VERSION=4.1.*
2521
- php: 7.2
22+
env: SYMFONY_VERSION=4.2.*
23+
- php: 7.3
24+
env: SYMFONY_VERSION=3.4.*
25+
- php: 7.3
2626
env: SYMFONY_VERSION=4.1.*
27+
- php: 7.3
28+
env: SYMFONY_VERSION=4.2.*
2729

2830
before_install:
2931
- echo "memory_limit=1G" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini;
3032

3133
install:
32-
- if [ "$SYMFONY_VERSION" != "" ]; then composer require --dev --no-update "symfony/framework-bundle:${SYMFONY_VERSION}"; fi;
34+
- if [ "$SYMFONY_VERSION" != "" ]; then composer require --dev --no-update symfony/framework-bundle:${SYMFONY_VERSION}; fi
35+
- if [ $(phpenv version-name) = "7.1" ]; then composer require --dev --no-update phpunit/phpunit:~7 matthiasnoback/symfony-dependency-injection-test:~3; fi
3336
- composer install --no-interaction
3437

3538
before_script:

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ requiring the `sebtm/inwx-api-bundle` package in your project's `composer.json`:
1515
```json
1616
{
1717
"require": {
18-
"sebtm/inwx-api-bundle": "~0.2"
18+
"sebtm/inwx-api-bundle": "~0.3"
1919
}
2020
}
2121
```

composer.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
"require": {
1515
"php": ">=7.1",
1616
"inwx/domrobot": "^2.4",
17-
"symfony/config": "^2.8|^3.4|^4.0|^4.1",
18-
"symfony/http-kernel": "^2.8|^3.4|^4.0|^4.1",
19-
"symfony/yaml": "^2.8|^3.4|^4.0|^4.1"
17+
"symfony/config": "^3.4|^4.1|^4.2",
18+
"symfony/http-kernel": "^3.4|^4.1|^4.2",
19+
"symfony/yaml": "^3.4|^4.1|^4.2"
2020
},
2121
"require-dev": {
22-
"friendsofphp/php-cs-fixer": "^2.12",
23-
"matthiasnoback/symfony-dependency-injection-test": "^3.0",
24-
"php-coveralls/php-coveralls": "^2.1",
25-
"phpunit/phpunit": "^7.2"
22+
"friendsofphp/php-cs-fixer": "~2",
23+
"matthiasnoback/symfony-dependency-injection-test": "~4",
24+
"php-coveralls/php-coveralls": "~2",
25+
"phpunit/phpunit": "~8"
2626
},
2727
"autoload": {
2828
"psr-4": {

0 commit comments

Comments
 (0)