{"id":15773987,"url":"https://github.com/onramplab/elevenlabs-api-client","last_synced_at":"2026-05-17T17:07:31.506Z","repository":{"id":196187703,"uuid":"694082771","full_name":"OnrampLab/elevenlabs-api-client","owner":"OnrampLab","description":null,"archived":false,"fork":false,"pushed_at":"2023-09-27T09:43:17.000Z","size":39,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-27T23:05:24.255Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/OnrampLab.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-09-20T09:47:37.000Z","updated_at":"2023-10-18T19:54:15.000Z","dependencies_parsed_at":"2023-09-22T17:55:35.487Z","dependency_job_id":"34c9c314-90f4-491f-96d0-4a72c76cc7cb","html_url":"https://github.com/OnrampLab/elevenlabs-api-client","commit_stats":{"total_commits":12,"total_committers":2,"mean_commits":6.0,"dds":0.08333333333333337,"last_synced_commit":"5911e30bd914c23f6557f79aa6cda16b58264feb"},"previous_names":["onramplab/elevenlabs-api-client"],"tags_count":2,"template":false,"template_full_name":"OnrampLab/php-api-client-template","purl":"pkg:github/OnrampLab/elevenlabs-api-client","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OnrampLab%2Felevenlabs-api-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OnrampLab%2Felevenlabs-api-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OnrampLab%2Felevenlabs-api-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OnrampLab%2Felevenlabs-api-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/OnrampLab","download_url":"https://codeload.github.com/OnrampLab/elevenlabs-api-client/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OnrampLab%2Felevenlabs-api-client/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266210843,"owners_count":23893338,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-10-04T16:04:20.531Z","updated_at":"2026-05-17T17:07:26.473Z","avatar_url":"https://github.com/OnrampLab.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# elevenlabs-api-client\n\n[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)\n[![CircleCI](https://circleci.com/gh/OnrampLab/elevenlabs-api-client.svg?style=shield)](https://circleci.com/gh/OnrampLab/elevenlabs-api-client)\n[![Total Downloads](https://img.shields.io/packagist/dt/onramplab/elevenlabs-api-client.svg?style=flat-square)](https://packagist.org/packages/onramplab/elevenlabs-api-client)\n\n## Requirements\n\n- PHP \u003e= 7.4;\n- composer.\n\n## Features\n\n- PSR-4 autoloading compliant structure;\n- PSR-2 compliant code style;\n- Unit-Testing with PHPUnit 6;\n- Comprehensive guide and tutorial;\n- Easy to use with any framework or even a plain php file;\n- Useful tools for better code included.\n\n## Installation\n\n```bash\ncomposer require onramplab/elevenlabs-api-client\n```\n\nThis will create a basic project structure for you:\n\n* **/build** is used to store code coverage output by default;\n* **/src** is where your codes will live in, each class will need to reside in its own file inside this folder;\n* **/tests** each class that you write in src folder needs to be tested before it was even \"included\" into somewhere else. So basically we have tests classes there to test other classes;\n* **.gitignore** there are certain files that we don't want to publish in Git, so we just add them to this fle for them to \"get ignored by git\";\n* **CHANGELOG.md** to keep track of package updates;\n* **CONTRIBUTION.md** Contributor Covenant Code of Conduct;\n* **LICENSE** terms of how much freedom other programmers is allowed to use this library;\n* **README.md** it is a mini documentation of the library, this is usually the \"home page\" of your repo if you published it on GitHub and Packagist;\n* **composer.json** is where the information about your library is stored, like package name, author and dependencies;\n* **phpunit.xml** It is a configuration file of PHPUnit, so that tests classes will be able to test the classes you've written;\n* **.travis.yml** basic configuration for Travis CI with configured test coverage reporting for code climate.\n\nPlease refer to original [article](http://www.darwinbiler.com/creating-composer-package-library/) for more information.\n\n## Useful Tools\n\n## Running Tests:\n\n    php vendor/bin/phpunit\n\n or\n\n    composer test\n\n## Code Sniffer Tool:\n\n    php vendor/bin/phpcs --standard=PSR2 src/\n\n or\n\n    composer psr2check\n\n## Code Auto-fixer:\n\n    composer psr2autofix\n    composer insights:fix\n    composer rector:fix\n\n## Building Docs:\n\n    php vendor/bin/phpdoc -d \"src\" -t \"docs\"\n\n or\n\n    composer docs\n\n## Changelog\n\nTo keep track, please refer to [CHANGELOG.md](https://github.com/Onramplab/composer-package-template/blob/master/CHANGELOG.md).\n\n## Contributing\n\n1. Fork it.\n2. Create your feature branch (git checkout -b my-new-feature).\n3. Make your changes.\n4. Run the tests, adding new ones for your own code if necessary (phpunit).\n5. Commit your changes (git commit -am 'Added some feature').\n6. Push to the branch (git push origin my-new-feature).\n7. Create new pull request.\n\nAlso please refer to [CONTRIBUTION.md](https://github.com/Onramplab/composer-package-template/blob/master/CONTRIBUTION.md).\n\n## License\n\nPlease refer to [LICENSE](https://github.com/Onramplab/composer-package-template/blob/master/LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fonramplab%2Felevenlabs-api-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fonramplab%2Felevenlabs-api-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fonramplab%2Felevenlabs-api-client/lists"}