-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add other php versions to travis (#4)
* * added other versions of php to travis * update readme to match code * try this for travis * apparently travis doesn't have php 5.3?
- Loading branch information
Showing
3 changed files
with
186 additions
and
352 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,52 @@ | ||
{ | ||
"name": "seanja/query-builder", | ||
"description": "Query building classes", | ||
"type": "library", | ||
"require-dev": { | ||
"phpunit/phpunit": "^5.7", | ||
"squizlabs/php_codesniffer": "^3.0", | ||
"phpmd/phpmd": "^2.6", | ||
"sebastian/phpcpd": "^3.0" | ||
}, | ||
"license": "MIT / GPL", | ||
"authors": [ | ||
{ | ||
"name": "SeanJA", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"autoload" : { | ||
"psr-4" : { | ||
"SeanJA\\" : "source" | ||
} | ||
}, | ||
"autoload-dev" : { | ||
"psr-4" : { | ||
"Tests\\SeanJA\\" : "tests\\source" | ||
} | ||
}, | ||
"require": {}, | ||
"scripts" : { | ||
"phpcpd": [ | ||
"vendor/bin/phpcpd --min-tokens 10 ./source" | ||
], | ||
"phpcs": [ | ||
"vendor/bin/phpcs --standard=PSR2 --extensions=php ./source" | ||
], | ||
"phpunit": [ | ||
"vendor/bin/phpunit --configuration ./phpunit.xml" | ||
], | ||
"phpmd": [ | ||
"vendor/bin/phpmd ./source text codesize,naming,unusedcode" | ||
], | ||
"coverage" : [ | ||
"php vendor/bin/phpunit --coverage-clover clover.xml" | ||
], | ||
"build": [ | ||
"vendor/bin/phpunit", | ||
"vendor/bin/phpcpd --min-tokens 10 ./source", | ||
"vendor/bin/phpcs --standard=PSR2 --extensions=php ./source", | ||
"vendor/bin/phpunit --coverage-text" | ||
] | ||
"name": "seanja/query-builder", | ||
"description": "Query building classes", | ||
"type": "library", | ||
"require-dev": { | ||
"phpunit/phpunit": "^4.7", | ||
"squizlabs/php_codesniffer": "^2.9", | ||
"phpmd/phpmd": "^2.6", | ||
"sebastian/phpcpd": "^2.0" | ||
}, | ||
"license": "MIT / GPL", | ||
"authors": [ | ||
{ | ||
"name": "SeanJA", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"autoload": { | ||
"psr-4": { | ||
"SeanJA\\": "source" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Tests\\SeanJA\\": "tests\\source" | ||
} | ||
}, | ||
"require": {}, | ||
"scripts": { | ||
"phpcpd": [ | ||
"vendor/bin/phpcpd --min-tokens 10 ./source" | ||
], | ||
"phpcs": [ | ||
"vendor/bin/phpcs --standard=PSR2 --extensions=php ./source" | ||
], | ||
"phpunit": [ | ||
"vendor/bin/phpunit --configuration ./phpunit.xml" | ||
], | ||
"phpmd": [ | ||
"vendor/bin/phpmd ./source text codesize,naming,unusedcode" | ||
], | ||
"coverage": [ | ||
"php vendor/bin/phpunit --coverage-clover clover.xml" | ||
], | ||
"build": [ | ||
"vendor/bin/phpunit", | ||
"vendor/bin/phpcpd --min-tokens 10 ./source", | ||
"vendor/bin/phpcs --standard=PSR2 --extensions=php ./source", | ||
"vendor/bin/phpunit --coverage-text" | ||
] | ||
} | ||
} |
Oops, something went wrong.