Skip to content

Commit

Permalink
Merge pull request #7 from aztech-dev/master
Browse files Browse the repository at this point in the history
Add PHPUnit as dev dependency and update build script
  • Loading branch information
aztech-dev committed Dec 10, 2015
2 parents 5e9ebd2 + 6997012 commit 2bdebb6
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 650 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
/vendor
docs/build
composer.phar
composer.lock
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install

script:
- vendor/bin/phpunit

php:
- 5.3
- 5.4
Expand Down
19 changes: 11 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,22 @@
"description": "PHP DataURI component",
"keywords": ["data-uri", "data", "URI"],
"license": "MIT",
"authors": [
{
"authors": [{
"name": "Alchemy",
"email": "[email protected]",
"homepage": "http://www.alchemy.fr"
}, {
"name": "nlegoff",
"email": "[email protected]"
}
],
}],
"require": {
"php" : ">=5.3.2",
"symfony/http-foundation" : "~2.0|~3.0"
"php": ">=5.3.2",
"symfony/http-foundation": "~2.0|~3.0"
},
"require-dev": {
"sami/sami" : "dev-master",
"ext-curl" : "*"
"sami/sami": "dev-master",
"ext-curl": "*",
"phpunit/phpunit": "^4.0|^5.0"
},
"autoload": {
"psr-0": {
Expand Down
Loading

0 comments on commit 2bdebb6

Please sign in to comment.