-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
XOL-4975 Support for Symfony 3 (#12)
* XOL-4975 removed `composer.lock` from version control * XOL-4975 fixed Symfony 2.8 deprecations * XOL-4975 upgraded to phpunit 7 * XOL-4975 fixed phpunit config issue * XOL-4975 fixed phpunit `setUp` function signature * XOL-4975 fixed phpunit `setUp` function signature * XOL-4975 fixed phpunit `tearDown` function signature * XOL-4975 do not fail on warnings
- Loading branch information
Showing
8 changed files
with
39 additions
and
1,938 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
/vendor/ | ||
composer.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
language: php | ||
|
||
php: | ||
- 7.2 | ||
- 7.3 | ||
- 7.4 | ||
|
||
env: | ||
- SYMFONY_VERSION="2.1" | ||
- SYMFONY_VERSION="3.0" | ||
|
||
before_script: | ||
- composer self-update | ||
- composer --version | ||
- composer require symfony/framework-bundle:${SYMFONY_VERSION} --no-update | ||
- composer install -n --dev --prefer-source | ||
|
||
script: phpunit --configuration phpunit.xml.dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.