Skip to content
This repository was archived by the owner on Dec 5, 2019. It is now read-only.
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
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,11 @@ php:
- 5.3
- hhvm
- nightly

install:
- travis_retry composer update --no-progress --prefer-dist --profile

script:
- composer test

sudo: false
12 changes: 11 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,17 @@
}
],
"require": {
"PHP" : ">=5.3"
"PHP" : ">=5.3",
"squizlabs/php_codesniffer": "2.3.4"
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "0.9.*"
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor",
"phpcs --standard= --extensions=php,php5,inc --ignore=vendor,*fail.php -p ."
]
},
"autoload": {
"psr-0": { "Less": "lib/" },
Expand Down