Skip to content
Snippets Groups Projects
Commit dac9d3a0 authored by Felip Manyer i Ballester's avatar Felip Manyer i Ballester
Browse files

Initial structure

parents
Branches
Tags
No related merge requests found
/vendor
/composer.lock
This diff is collapsed.
# PHP GBIF client
{
"name": "restelae/php-gbif",
"description": "GBIF PHP client",
"keywords": [
"gbif", "client"
],
"type": "library",
"license": "GPL-3.0-or-later",
"homepage": "http://git.res-telae.cat/restelae/php-gbif.git",
"authors": [{
"name": "Felip Manyer i Ballester",
"email": "contact@res-telae.cat",
"homepage": "https://www.res-telae.cat"
}],
"minimum-stability": "dev",
"require": {
"php": ">=7.2",
"guzzlehttp/guzzle": "^7.2"
},
"support": {
"source": "http://git.res-telae.cat/restelae/php-gbif.git"
},
"autoload": {
"psr-4": {"ResTelae\\Gbif\\": "src"}
}
}
<?php
namespace ResTelae\Gbif;
/**
* GBIF: generic class.
*/
abstract class Gbif {
}
<?php
namespace ResTelae\Gbif;
/**
* GBIF: occurrences.
*/
class Occurrences extends Gbif {
/**
* Search GBIF occurrences.
*/
public function search() {}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment