php-randomdate/composer.json
Josh Sherman fb97d20b8e
ci: setup GitHub actions
Been having issues with Travis CI, figured time to give GitHub Actions a
go. Also moved over from Coveralls to CodeCov due to some limitations in
coverage format.
2020-05-30 12:11:33 -05:00

33 lines
677 B
JSON

{
"name": "joshtronic/randomdate",
"description": "Random time/date generator fully compatible with PHP's date function.",
"version": "1.0.0",
"type": "library",
"keywords": [
"random",
"date",
"time",
"generator"
],
"homepage": "https://github.com/joshtronic/php-randomdate",
"license": "MIT",
"authors": [
{
"name": "Josh Sherman",
"email": "hello@joshtronic.com",
"homepage": "https://joshtronic.com"
}
],
"require": {
"php": ">=5.3"
},
"require-dev": {
"php-coveralls/php-coveralls": ">=1",
"phpunit/phpunit": ">=4"
},
"autoload": {
"psr-4": {
"joshtronic\\": "src/"
}
}
}