Pressroom template verwijderd, website naar root van repo
This commit is contained in:
6
vendor/mockery/mockery/travis/after_success.sh
vendored
Executable file
6
vendor/mockery/mockery/travis/after_success.sh
vendored
Executable 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
|
||||
11
vendor/mockery/mockery/travis/before_script.sh
vendored
Executable file
11
vendor/mockery/mockery/travis/before_script.sh
vendored
Executable 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
|
||||
2
vendor/mockery/mockery/travis/extra.ini
vendored
Normal file
2
vendor/mockery/mockery/travis/extra.ini
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
extension = "mongo.so"
|
||||
extension = "redis.so"
|
||||
6
vendor/mockery/mockery/travis/install.sh
vendored
Executable file
6
vendor/mockery/mockery/travis/install.sh
vendored
Executable 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
8
vendor/mockery/mockery/travis/script.sh
vendored
Executable 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
|
||||
Reference in New Issue
Block a user