diff options
author | Valentin Popov <info@valentineus.link> | 2020-07-19 20:05:55 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-19 20:05:55 +0300 |
commit | 24da358b533bcf580e638c66e1ba8f2980d5bc12 (patch) | |
tree | 0f3bb42f2143c782f5289dfb81c3f57ba712500c /composer.json | |
parent | 1db2234df48d04e832071cab5d4e8aa9b8673116 (diff) | |
parent | 506e16bdfcae6996adacdcb5ba23fdf45c98bafe (diff) | |
download | php-epg-service-24da358b533bcf580e638c66e1ba8f2980d5bc12.tar.xz php-epg-service-24da358b533bcf580e638c66e1ba8f2980d5bc12.zip |
Merge pull request #1 from valentineus/develop
v0.0.1
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..f292995 --- /dev/null +++ b/composer.json @@ -0,0 +1,28 @@ +{ + "name": "valentineus/epg-service", + "description": "Description", + "type": "library", + "license": "Apache-2.0", + "authors": [ + { + "name": "Valentin Popov", + "email": "info@valentineus.link" + } + ], + "minimum-stability": "alpha", + "autoload": { + "psr-4": { + "EPGService\\": "src/", + "Tests\\": "tests/" + } + }, + "require": { + "guzzlehttp/guzzle": "^7.0", + "ext-SimpleXML": "^7.4" + }, + "require-dev": { + "phpunit/phpunit": "^9.2", + "fzaninotto/faker": "^1.9", + "vlucas/phpdotenv": "^5.1" + } +} |