Add drupal scaffold
This commit is contained in:
parent
6fa31ad086
commit
3e6a5cbed2
15 changed files with 2748 additions and 1 deletions
25
web/vendor/drupal-composer/drupal-scaffold/.travis.yml
vendored
Normal file
25
web/vendor/drupal-composer/drupal-scaffold/.travis.yml
vendored
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
language: php
|
||||
php:
|
||||
- 5.5
|
||||
- 5.6
|
||||
- 7.0
|
||||
|
||||
sudo: false
|
||||
|
||||
git:
|
||||
depth: 10000
|
||||
|
||||
before_install:
|
||||
- phpenv config-rm xdebug.ini
|
||||
- composer --verbose self-update
|
||||
- composer --version
|
||||
|
||||
install:
|
||||
- composer --verbose install
|
||||
|
||||
before_script:
|
||||
- git config --global user.email "travisci@example.com"
|
||||
- git config --global user.name "Travis CI Test"
|
||||
|
||||
script:
|
||||
- ./vendor/bin/phpunit
|
||||
Reference in a new issue