Skip to content

Commit 9ed9b6b

Browse files
authored
Merge pull request #9 from acrobat/sf4-support
Allow symfony 4
2 parents 29a9c87 + cdec46f commit 9ed9b6b

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.travis.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,10 @@ cache:
77
- $HOME/.composer/cache
88

99
php:
10-
- 5.3
11-
- 5.4
12-
- 5.5
1310
- 5.6
1411
- 7.0
12+
- 7.1
13+
- 7.2
1514
- hhvm
1615

1716
env:
@@ -21,7 +20,7 @@ env:
2120
matrix:
2221
fast_finish: true
2322
include:
24-
- php: 5.3
23+
- php: 5.6
2524
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest"
2625

2726
before_install:

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"keywords": ["normalization", "denormalization"],
55
"license": "MIT",
66
"require": {
7-
"symfony/serializer": "^2.3 || ^3.0"
7+
"php": "^5.6||^7.0",
8+
"symfony/serializer": "^2.3 || ^3.0 || ^4.0"
89
},
910
"require-dev": {
1011
"doctrine/common": "^2.1",
@@ -17,7 +18,7 @@
1718
"psr-4": { "Fixtures\\": "spec/Fixtures/" }
1819
},
1920
"scripts": {
20-
"test": "vendor/bin/phpspec"
21+
"test": "vendor/bin/phpspec run"
2122
},
2223
"extra": {
2324
"branch-alias": {

0 commit comments

Comments
 (0)