-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* PHP Parse error: syntax error, unexpected '' * UPDATE: Composer dependencies & path/settings * FIX: phpcs LINT * FIX: PHPStan tests * FIX: phpunit tests Co-authored-by: Marco Hermo <[email protected]>
- Loading branch information
Showing
10 changed files
with
72 additions
and
45 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,9 @@ | ||
app | ||
resources | ||
vendor | ||
.DS_Store | ||
.htaccess | ||
behat.yml | ||
composer.lock | ||
index.php | ||
web.config |
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,36 +1,39 @@ | ||
language: php | ||
|
||
services: | ||
- mysql | ||
|
||
env: | ||
global: | ||
- COMPOSER_ROOT_VERSION=5.0.x-dev | ||
- PHPSTAN_VERSION=0.9.2 | ||
- PHPSTAN_VERSION=^0.12 | ||
- SS_BASE_URL="http://localhost/" | ||
|
||
matrix: | ||
include: | ||
# NOTE(Jake): 2018-05-02 | ||
# | ||
# PHP 5.6 is not supported due to undebuggable errors in Travis | ||
# occuring in the config layer. | ||
# | ||
#- php: 5.6 | ||
# env: DB=MYSQL RECIPE_VERSION=1.0.x-dev | ||
- php: 7.0 | ||
env: DB=MYSQL RECIPE_VERSION=1.1.x-dev PHPCS_TEST=1 | ||
- php: 7.1 | ||
env: DB=MYSQL RECIPE_VERSION=1.2.x-dev | ||
- php: 7.2 | ||
env: DB=MYSQL RECIPE_VERSION=1.2.x-dev # NOTE(Jake): 2018-05-03, Needs fixes PHP include fixes, - PHPSTAN_TEST=1 | ||
env: DB=MYSQL RECIPE_VERSION=4.5.x-dev PHPCS_TEST=1 | ||
- php: 7.3 | ||
env: DB=MYSQL RECIPE_VERSION=4.x-dev PHPSTAN_TEST=1 | ||
- php: 7.4 | ||
env: DB=MYSQL RECIPE_VERSION=4.x-dev PHPUNIT_TEST=1 | ||
|
||
before_script: | ||
# Extra $PATH | ||
- export PATH=./vendor/bin:$PATH | ||
|
||
# Init PHP | ||
- phpenv rehash | ||
- phpenv config-rm xdebug.ini | ||
- echo 'memory_limit = 2G' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini | ||
|
||
# Install composer dependencies | ||
- composer validate | ||
- composer require --no-update silverstripe/recipe-cms:$RECIPE_VERSION | ||
- if [[ $PHPSTAN_TEST ]]; then composer require --no-update phpstan/phpstan-shim:$PHPSTAN_VERSION; fi | ||
- composer require --no-update silverstripe/recipe-testing:^1 silverstripe/recipe-cms:$RECIPE_VERSION | ||
- if [[ $PHPSTAN_TEST ]]; then composer require --no-update phpstan/phpstan:$PHPSTAN_VERSION; fi | ||
- composer install --prefer-dist --no-interaction --no-progress --no-suggest --optimize-autoloader --verbose --profile | ||
|
||
script: | ||
- if [[ $PHPCS_TEST ]]; then vendor/bin/phpcs --ignore=tests/bootstrap-phpstan.php src/ tests/ *.php; fi | ||
- if [[ $PHPSTAN_TEST ]]; then vendor/bin/phpstan analyse src/ tests/ -c "phpstan.neon" -a "tests/bootstrap-phpstan.php" --level 3; fi | ||
- vendor/bin/phpunit | ||
- if [[ $PHPCS_TEST ]]; then phpcs --ignore=tests/bootstrap-phpstan.php src/ tests/ *.php; fi | ||
- if [[ $PHPSTAN_TEST ]]; then phpstan analyse src/ tests/ -c "phpstan.neon" -a "tests/bootstrap-phpstan.php" --level 3; fi | ||
- if [[ $PHPUNIT_TEST ]]; then phpunit; fi |
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