Skip to content
Snippets Groups Projects
Select Git revision
  • e6bbb9b7a1d61d936b699afa39c2ae08ac6ae4a8
  • master default protected
  • 1.0.0
  • 1.0.0-alpha7
  • 1.0.0-alpha6
  • 1.0.0-alpha5
  • 1.0.0-alpha4
  • 1.0.0-alpha3
  • 1.0.0-alpha2
  • 1.0.0-alpha1
10 results

composer.json

Blame
  • 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/"
        }
    }