Quick and dirty

This commit is contained in:
Josh Sherman 2016-08-10 22:47:31 -05:00
parent f93880b054
commit 1e22fd8fbe
2 changed files with 74 additions and 0 deletions

23
composer.json Normal file
View file

@ -0,0 +1,23 @@
{
"name": "joshtronic/php-holidayapi",
"description": "Official PHP library for Holiday API",
"version": "1.0.0",
"type": "library",
"keywords": [ "holiday", "holidays", "holidayapi" ],
"homepage": "https://github.com/joshtronic/php-holidayapi",
"license": "MIT",
"authors": [{
"name": "Josh Sherman",
"email": "hello@holidayapi.com",
"homepage": "https://holidayapi.com,"
}],
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"satooshi/php-coveralls": "~1.0"
},
"autoload": {
"psr-4": { "HolidayAPI\\": "src/" }
}
}