Skip to content

Commit

Permalink
put the vendor bin in the right place
Browse files Browse the repository at this point in the history
  • Loading branch information
lalobo committed May 11, 2016
1 parent 134627a commit 648f375
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 15 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
/vendor/
/bin/vendor/
/build/
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ php:

script:
- composer install
- ./bin/vendor/phpunit -c config/phpunit.xml --testsuite=Unit
- ./vendor/bin/phpunit -c config/phpunit.xml --testsuite=Unit
after_script:
- ./bin/vendor/coveralls -v
- ./vendor/bin/coveralls -v
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ $ composer require mooti/validator
If you would like to run the tests. Use the following:

```
$ ./bin/vendor/phpunit -c config/phpunit.xml
$ ./vendor/bin/phpunit -c config/phpunit.xml
```

### Usage
Expand Down
5 changes: 1 addition & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"license": "Apache-2.0",
"require": {
"php": ">=5.5.9",
"mooti/factory": "^0.0.4"
"mooti/factory": "^0.0.5"
},
"require-dev": {
"phpunit/phpunit": "5.1.*",
Expand All @@ -17,8 +17,5 @@
},
"autoload-dev": {
"psr-4": {"Mooti\\Test\\PHPUnit\\Validator\\": "tests/phpunit"}
},
"config": {
"bin-dir": "bin/vendor/"
}
}
14 changes: 7 additions & 7 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 648f375

Please sign in to comment.