Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
/bin/pdepend
/bin/php-cs-fixer
/bin/phpmd
/bin/box

# Binaries
/box.phar
Expand Down
17 changes: 17 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
sudo: false

language: php

php:
- 5.5.9
- 5.6
- 7

before_script:
- phpenv config-rm xdebug.ini
- composer self-update

script:
- composer install
- ./bin/box build
- ./drupal.phar
2 changes: 1 addition & 1 deletion bin/drupal.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Drupal\Console\Bootstrap\DrupalConsoleCore;
use Drupal\Console\Utils\ArgvInputReader;
use Drupal\Console\Style\DrupalStyle;
use Drupal\Console\Application;
use Drupal\ConsoleLauncher\Application;

set_time_limit(0);

Expand Down
5 changes: 4 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {"Drupal\\Console\\": "src"}
"psr-4": {"Drupal\\ConsoleLauncher\\": "src"}
},
"require-dev": {
"kherge/box": "^2.7"
}
}
Loading