2017-12-30 21:01:29 +01:00
|
|
|
sudo: false
|
|
|
|
|
|
|
|
language: php
|
|
|
|
|
2018-01-10 22:23:45 +01:00
|
|
|
php:
|
|
|
|
- 7.0
|
|
|
|
- 7.1
|
|
|
|
|
2018-01-24 15:36:29 +01:00
|
|
|
env:
|
|
|
|
- TYPO3_VERSION="^7.6"
|
|
|
|
- TYPO3_VERSION="^8.7"
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
exclude:
|
|
|
|
|
2017-12-30 21:01:29 +01:00
|
|
|
cache:
|
|
|
|
directories:
|
2018-01-10 22:23:45 +01:00
|
|
|
- .Build/vendor
|
2017-12-30 21:01:29 +01:00
|
|
|
- $HOME/.composer/cache
|
|
|
|
|
2018-01-10 22:23:45 +01:00
|
|
|
before_install:
|
|
|
|
- phpenv config-rm xdebug.ini
|
2017-12-30 21:01:29 +01:00
|
|
|
|
|
|
|
install:
|
2018-01-24 15:36:29 +01:00
|
|
|
- composer require-typo3-version "$TYPO3_VERSION"
|
|
|
|
- git checkout .
|
|
|
|
- export TYPO3_PATH_ROOT=$PWD/.Build/public
|
2017-12-30 21:01:29 +01:00
|
|
|
|
|
|
|
script:
|
2018-01-13 00:26:51 +01:00
|
|
|
- >
|
|
|
|
echo;
|
|
|
|
echo "Linting all PHP files";
|
2018-01-25 17:22:40 +01:00
|
|
|
composer php-lint;
|