{"id":37011942,"url":"https://github.com/adbutler/adbutler-php","last_synced_at":"2026-01-14T01:01:45.687Z","repository":{"id":56940563,"uuid":"75331362","full_name":"adbutler/adbutler-php","owner":"adbutler","description":"AdButler PHP bindings","archived":false,"fork":false,"pushed_at":"2021-01-11T17:47:50.000Z","size":81,"stargazers_count":3,"open_issues_count":2,"forks_count":3,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-11-12T05:22:33.531Z","etag":null,"topics":["ad-server","adbutler","api","php"],"latest_commit_sha":null,"homepage":"http://www.adbutler.com/docs/api?php","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/adbutler.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-12-01T20:46:46.000Z","updated_at":"2023-01-21T19:46:43.000Z","dependencies_parsed_at":"2022-08-21T06:20:55.150Z","dependency_job_id":null,"html_url":"https://github.com/adbutler/adbutler-php","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/adbutler/adbutler-php","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adbutler%2Fadbutler-php","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adbutler%2Fadbutler-php/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adbutler%2Fadbutler-php/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adbutler%2Fadbutler-php/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/adbutler","download_url":"https://codeload.github.com/adbutler/adbutler-php/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adbutler%2Fadbutler-php/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28407636,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T00:40:43.272Z","status":"ssl_error","status_checked_at":"2026-01-14T00:40:42.636Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ad-server","adbutler","api","php"],"created_at":"2026-01-14T01:01:44.612Z","updated_at":"2026-01-14T01:01:45.541Z","avatar_url":"https://github.com/adbutler.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AdButler PHP bindings\n\n[![Travis](https://img.shields.io/travis/adbutler/adbutler-php.svg?style=flat-square)](https://travis-ci.org/adbutler/adbutler-php)\n[![Packagist Pre Release](https://img.shields.io/packagist/vpre/adbutler/adbutler-php.svg?style=flat-square)](https://packagist.org/packages/adbutler/adbutler-php)\n[![Total Downloads](https://img.shields.io/packagist/dt/adbutler/adbutler-php.svg?style=flat-square)](https://packagist.org/packages/adbutler/adbutler-php)\n[![License](https://img.shields.io/github/license/adbutler/adbutler-php.svg?style=flat-square)](https://github.com/adbutler/adbutler-php/blob/master/LICENSE)\n\nYou can sign up for an AdButler account at [https://adbutler.com](https://adbutler.com).\n\nIf you are looking for documentation, go here: [https://adbutler.com/docs/api?php](https://adbutler.com/docs/api?php)\n\n## Requirements\n  1. [AdButler account](https://adbutler.com/)\n  2. PHP 5.6 or later\n\n## Installation\n\n### Composer\n\nYou can install the bindings via [Composer](http://getcomposer.org/).\nRun the following command:\n\n```bash\ncomposer require adbutler/adbutler-php\n```\n\nIf you are installing a beta version, then you need to mention the version tag\ntoo e.g. `composer require adbutler/adbutler-php 1.0.4-beta`.\n\nTo use the bindings, use Composer's [autoload](https://getcomposer.org/doc/00-intro.md#autoloading):\n\n```php\nrequire_once('vendor/autoload.php');\n```\n\n### Manual Installation\n\nIf you do not wish to use Composer, you can download the\n[latest release](https://github.com/adbutler/adbutler-php/releases).\nThen, to use the bindings, include the `init.php` file.\n\n```php\nrequire_once('/path/to/adbutler-php/init.php');\n```\n\n## Getting Started\n\nSimple usage looks like:\n\n```php\n\\AdButler\\API::init(array('api_key' =\u003e '45e8fca2dc0f896fd7cb4cb0031ba249'));\n\n$advertiser = \\AdButler\\Advertiser::create(array(\n  \"can_change_password\" =\u003e true,\n  \"can_add_banners\" =\u003e true,\n  \"email\" =\u003e \"demo.advertiser@adbutler.com\",\n  \"name\" =\u003e \"Demo Advertiser\",\n  \"password\" =\u003e \"some_password\"\n));\n\necho $advertiser;\n```\n\n## Documentation\n\nPlease see https://adbutler.com/docs/api for up-to-date documentation.\n\n## License\n© 2016–2019 SparkLIT. Released under the MIT license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadbutler%2Fadbutler-php","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadbutler%2Fadbutler-php","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadbutler%2Fadbutler-php/lists"}