Select Git revision
composer.json
This project manages its dependencies using Composer.
Learn more
composer.json 1.10 KiB
{
"name": "restelae/php-gbif",
"description": "GBIF PHP client",
"keywords": [
"gbif", "client"
],
"type": "library",
"license": "GPL-3.0-or-later",
"homepage": "https://gitlab.res-telae.cat/restelae/php-gbif",
"authors": [
{
"name": "Felip Manyer i Ballester",
"email": "contact@res-telae.cat",
"homepage": "https://www.res-telae.cat"
},
{
"name": "Francesco Abeni",
"homepage": "https://www.linkedin.com/in/francescoabeni/"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.2",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.0|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.3"
},
"support": {
"source": "https://gitlab.res-telae.cat/restelae/php-gbif"
},
"autoload": {
"psr-4": {"ResTelae\\Gbif\\": "src"}
},
"autoload-dev": {
"psr-4": {"ResTelae\\Gbif\\Tests\\": "tests/"}
},
"scripts": {
"test": "vendor/bin/phpunit --colors tests/"
}
}