PicnicApi/composer.json

23 lines
479 B
JSON
Raw Normal View History

2021-04-13 01:13:34 +02:00
{
"name": "ardent/picnic-api",
"description": "PHP implementation of the unofficial picnic api",
2021-04-13 02:54:22 +02:00
"type": "library",
2021-04-13 01:13:34 +02:00
"license": "GPL-3.0-only",
"authors": [
{
2021-10-04 02:47:29 +02:00
"name": "ardent",
"email": "composer@loken.nl"
2021-04-13 01:13:34 +02:00
}
],
2021-04-13 02:54:22 +02:00
"require": {
"php": "^8.0",
2021-04-13 02:54:22 +02:00
"ext-json": "*",
"guzzlehttp/guzzle": "^6.0"
2021-04-13 02:54:22 +02:00
},
"autoload": {
"psr-4": {
"Ardent\\PicnicApi\\": "src/"
}
}
2021-04-13 01:13:34 +02:00
}