Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jongotlin/ekopost
https://github.com/jongotlin/ekopost
Last synced: 15 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/jongotlin/ekopost
- Owner: jongotlin
- Created: 2020-10-05T06:08:24.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2020-11-09T12:44:39.000Z (about 4 years ago)
- Last Synced: 2024-12-04T07:40:53.888Z (about 1 month ago)
- Language: PHP
- Size: 28.3 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ekopost
API wrapper for Ekopost## Install with composer
`composer require jongotlin/ekopost`## Example
```php
$ekopost = new \JGI\Ekopost\Ekopost(new \GuzzleHttp\Client(), $apiKey, false);
$campaign = new \JGI\Ekopost\Model\Campaign();$campaign = $ekopost->campaigns()->create($campaign);
echo $campaign->getId();
```