feat: initial commit
Basic functionality and tests and all that.
This commit is contained in:
commit
69c4a24301
10 changed files with 307 additions and 0 deletions
33
composer.json
Normal file
33
composer.json
Normal file
|
@ -0,0 +1,33 @@
|
|||
{
|
||||
"name": "joshtronic/randomdate",
|
||||
"description": "Random time/date generator fully compatible with PHP's date function.",
|
||||
"version": "0.1.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/"
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue