Skip to content
Open
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
9 changes: 7 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
language: php

php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- hhvm

before_script:
- wget http://getcomposer.org/composer.phar
- php composer.phar install --dev

script: phpunit --coverage-clover clover
script:
- vendor/bin/phpunit --coverage-clover clover
- composer validate

after_success:
- curl -sL https://bit.ly/artifact-uploader | php
Expand Down
10 changes: 9 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "phpcollection/phpcollection",
"description": "General-Purpose Collection Library for PHP",
"keywords": ["collection", "list", "sequence", "map", "set"],
"license": "Apache2",
"license": "Apache-2.0",
"authors": [
{"name": "Johannes M. Schmitt", "email": "schmittjoh@gmail.com"}
],
Expand All @@ -18,5 +18,13 @@
"branch-alias": {
"dev-master": "0.4-dev"
}
},
"require-dev": {
"phpunit/phpunit": "<6"
},
"config": {
"platform": {
"php": "5.4"
}
}
}
Loading