You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
10 months ago | |
---|---|---|
lib | 10 months ago | |
test | 10 months ago | |
.editorconfig | 10 months ago | |
.env.example | 10 months ago | |
.gitignore | 10 months ago | |
.phpcs.xml | 10 months ago | |
.phpstan.neon | 10 months ago | |
.phpunit.xml | 10 months ago | |
.pre-commit-config.yaml | 10 months ago | |
README.md | 10 months ago | |
composer.json | 10 months ago | |
composer.lock | 10 months ago |
README.md
Usage
Open your project or initialize a new one with this composer.json:
{
"name": "acme/my-project",
"description": "My project",
"repositories":[
{
"type":"composer",
"url":"https://packages.destrier.tk",
"only": [
"oreolek/payeer"
]
}
],
"minimum-stability": "dev"
}
(The repositories
value is the key here.)
Type composer require oreolek/payeer
If you don't have a PSR-7 implementation in your project, composer will stop and give you a choice. You can repeat the command with your choice, like this:
composer require oreolek/payeer php-http/guzzle7-adapter
Initialize the Payeer\Adapter with your ID and secret key:
$adapter = new Adapter([
'id' => $_ENV['PAYEER_ID'],
'key' => $_ENV['SECRET'],
]);
(see test/PayeerTest.php
for example)
You can use any method, it is transparently sent to the API as is:
$response = $adapter->time();