Skip to content

Commit

Permalink
Menambahkan vendor
Browse files Browse the repository at this point in the history
  • Loading branch information
AgusWijiSuhariono committed Aug 21, 2017
1 parent d41d084 commit 596a531
Show file tree
Hide file tree
Showing 5,695 changed files with 740,088 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
7 changes: 7 additions & 0 deletions vendor/autoload.php
@@ -0,0 +1,7 @@
<?php

// autoload.php @generated by Composer

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

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

sudo: false

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

php: [5.3, 5.4, 5.5, 5.6, 7.0, hhvm]

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.0
env: SYMFONY_VERSION='3.0.*'

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

0 comments on commit 596a531

Please sign in to comment.