-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from northernco/symfony-6-update
Symfony 6 update
- Loading branch information
Showing
120 changed files
with
2,737 additions
and
4,911 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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
language: php | ||
|
||
php: | ||
- 8.0 | ||
- 8.1 | ||
- 8.2 | ||
|
||
matrix: | ||
include: | ||
- php: 8.0 | ||
env: SYMFONY_VERSION=^5.2 | ||
- php: 8.1 | ||
env: SYMFONY_VERSION=^5.2 | ||
- php: 8.2 | ||
env: SYMFONY_VERSION=^5.2 | ||
|
||
before_install: | ||
- echo "extension = mongodb.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini | ||
- | | ||
if [ "${SYMFONY_VERSION}" != "" ]; then | ||
packages="form dependency-injection config http-foundation http-kernel options-resolver security-guard serializer" | ||
devpackages="framework-bundle browser-kit templating expression-language" | ||
for package in $packages | ||
do | ||
composer require --no-update symfony/"$package"=${SYMFONY_VERSION}; | ||
done | ||
for package in $devpackages | ||
do | ||
composer require --dev --no-update symfony/"$package"=${SYMFONY_VERSION}; | ||
done | ||
fi; | ||
install: | ||
- travis_retry composer self-update | ||
- COMPOSER_MEMORY_LIMIT=-1 travis_retry composer update ${COMPOSER_FLAGS} --no-interaction | ||
- curl -s http://getcomposer.org/installer | php | ||
- php composer.phar install --dev --no-interaction | ||
|
||
script: | ||
- mkdir -p build/logs | ||
- php vendor/bin/phpunit -c phpunit.xml.dist | ||
|
||
after_success: | ||
- php vendor/bin/php-coveralls |
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
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
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
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
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
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
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
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
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.