Pressroom template verwijderd, website naar root van repo

This commit is contained in:
2020-03-22 15:30:52 +01:00
parent 2cb6a77425
commit f3d1c41e91
7620 changed files with 0 additions and 186900 deletions

View File

@@ -0,0 +1,6 @@
#!/bin/bash
if [[ $TRAVIS_PHP_VERSION == "5.6" ]]; then
vendor/bin/coveralls -v
wget https://scrutinizer-ci.com/ocular.phar
php ocular.phar code-coverage:upload --format=php-clover ./build/logs/clover.xml
fi

View File

@@ -0,0 +1,11 @@
#!/bin/bash
if [[ $TRAVIS_PHP_VERSION != "hhvm" \
&& $TRAVIS_PHP_VERSION != "hhvm-nightly" \
&& $TRAVIS_PHP_VERSION != "7.0" ]]; then
phpenv config-add ./travis/extra.ini
phpenv rehash
fi
if [[ $TRAVIS_PHP_VERSION == "5.6" ]]; then
sed '/MockeryPHPUnitIntegration/d' -i ./phpunit.xml.dist
fi

View File

@@ -0,0 +1,2 @@
extension = "mongo.so"
extension = "redis.so"

6
vendor/mockery/mockery/travis/install.sh vendored Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/bash
composer install -n
if [[ $TRAVIS_PHP_VERSION == "5.6" ]]; then
composer require --dev satooshi/php-coveralls:~0.7@dev
fi

8
vendor/mockery/mockery/travis/script.sh vendored Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
if [[ $TRAVIS_PHP_VERSION != "hhvm" \
&& $TRAVIS_PHP_VERSION != "hhvm-nightly" \
&& $TRAVIS_PHP_VERSION != "7.0" ]]; then
vendor/bin/phpunit --coverage-text --coverage-clover ./build/logs/clover.xml
else
vendor/bin/phpunit
fi