Moved composer out of the private directory
Unsure if that's why I couldn't make the file, thinking of perhaps making the log directory part of the directory structure instead of creating it on the fly in Travis CI.
This commit is contained in:
parent
4a8260c0eb
commit
04e008c508
4 changed files with 6 additions and 4 deletions
|
@ -12,8 +12,8 @@ install:
|
|||
- composer install
|
||||
|
||||
script:
|
||||
- mkdir -p .composer/build/logs
|
||||
- phpunit --coverage-clover .composer/build/logs/clover.xml --bootstrap ./tests/bootstrap.php ./tests
|
||||
- mkdir -p vendors/composer/build/logs
|
||||
- phpunit --coverage-clover vendors/composer/build/logs/clover.xml --bootstrap ./tests/bootstrap.php ./tests
|
||||
|
||||
after_script:
|
||||
- php .composer/bin/coveralls --config .coveralls.yml -v
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"config": {
|
||||
"vendor-dir": ".composer"
|
||||
"vendor-dir": "vendors/composer"
|
||||
},
|
||||
"require": {
|
||||
"devize/closure-compiler": "@dev",
|
||||
|
|
2
composer.lock
generated
2
composer.lock
generated
|
@ -3,7 +3,7 @@
|
|||
"This file locks the dependencies of your project to a known state",
|
||||
"Read more about it at http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file"
|
||||
],
|
||||
"hash": "a7bdd9db7c3361000e485b42f5d495d3",
|
||||
"hash": "485fce2d03ad9e34cecb409899f06a37",
|
||||
"packages": [
|
||||
{
|
||||
"name": "devize/closure-compiler",
|
||||
|
|
2
vendors/composer/.gitignore
vendored
Normal file
2
vendors/composer/.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
*
|
||||
!.gitignore
|
Loading…
Add table
Add a link
Reference in a new issue