Skip to content

Commit

Permalink
upload vendor
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruce Xie committed Dec 13, 2018
1 parent f069b33 commit cc0093b
Show file tree
Hide file tree
Showing 6,672 changed files with 2,077,682 additions and 1 deletion.
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ nbproject
Thumbs.db

# composer vendor dir
/vendor
#/vendor

# composer itself is not needed
composer.phar
Expand Down
7 changes: 7 additions & 0 deletions vendor/autoload.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?php

// autoload.php @generated by Composer

require_once __DIR__ . '/composer/autoload_real.php';

return ComposerAutoloaderInitc7999adc8af81ef3c594bdf59736d9e9::getLoader();
4 changes: 4 additions & 0 deletions vendor/behat/gherkin/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*.tgz
vendor
composer.phar
composer.lock
33 changes: 33 additions & 0 deletions vendor/behat/gherkin/.travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
language: php

sudo: false

cache:
directories:
- $HOME/.composer/cache/files

php: [5.3, 5.6, 7.0, 7.1]

matrix:
include:
- php: 5.6
env: SYMFONY_VERSION='2.3.*'
- php: 5.6
env: SYMFONY_VERSION='2.7.*'
- php: 5.6
env: SYMFONY_VERSION='2.8.*'
- php: 7.1
env: SYMFONY_VERSION='3.*'

before_install:
- composer self-update
- if [ "$SYMFONY_VERSION" != "" ]; then composer require --no-update symfony/yaml=$SYMFONY_VERSION; fi;

install:
- composer install

script: vendor/bin/phpunit -v --coverage-clover=coverage.clover

after_script:
# don't upload coverage on PHP 7 and HHVM as it cannot be generated. We don't want to tell Scrutinizer that the coverage generation failed.
- if [[ "7.0" != "$TRAVIS_PHP_VERSION" && "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
Loading

0 comments on commit cc0093b

Please sign in to comment.