PicnicApi/composer.json

23 lines
483 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": [
{
"name": "tim",
"email": "tim.veenendaal@gmail.com"
}
],
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
}