Skip to content
This repository has been archived by the owner on Sep 7, 2021. It is now read-only.

Commit

Permalink
Merge pull request #13 from dave-redfern/sf5-support
Browse files Browse the repository at this point in the history
Add Symfony 5 support
  • Loading branch information
samjarrett authored Jan 29, 2020
2 parents efe04ff + c0ca53e commit 20de01f
Show file tree
Hide file tree
Showing 15 changed files with 1,501 additions and 781 deletions.
7 changes: 7 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/tests export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.travis.yml export-ignore
/composer.lock export-ignore
/phpunit.xml.dist export-ignore
/README.md export-ignore
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
var
vendor
tests/Fixtures/logs
tests/Fixtures/cache
.idea
.phpunit.result.cache
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: php
php:
- '7.1'
- '7.3'
- nightly

matrix:
Expand All @@ -11,4 +11,4 @@ before_script:
- composer install

script:
- vendor/bin/phpunit
- vendor/bin/phpunit
7 changes: 4 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@
}
},
"require": {
"php": ">=5.6",
"php": ">=7.0",
"league/fractal": "~0.17",
"symfony/framework-bundle": "^2.8|^3.0|^4.0"
"symfony/framework-bundle": "^3.0|^4.0|^5.0"
},
"require-dev": {
"phpunit/phpunit": "^5.6"
"phpunit/phpunit": "^8.0",
"symfony/yaml": "^4.0|^5.0"
}
}
Loading

0 comments on commit 20de01f

Please sign in to comment.