Download the PHP package eugenefvdm/api-collection without Composer
On this page you can find all versions of the php package eugenefvdm/api-collection. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download eugenefvdm/api-collection
More information about eugenefvdm/api-collection
Files in eugenefvdm/api-collection
Package api-collection
Short Description APIs for various services with Laravel Facade access and lots of automated tests.
License MIT
Homepage https://github.com/eugenefvdm/api
Informations about the package api-collection
API Collection
Another day, another API.
A set of Laravel API service providers.
- BulkSMS
- Discord
- DNS
- Fail2ban
- Hello Peter
- Slack
- Tail
- Telegram
- WHM/cPanel
- X (Twitter)
- ZADomains
Installation
Publish the configuration file
Contents of config/api.php
Usage
Testing
Design philosophy
APIs can be hard. Reading documentation is a drag. And what if you only want to use a few calls? Do you really have to learn everything? This library collection gives you the power of many APIs in one package. It's minimalist and uses Laravel's facades for easy access. Each call is tested using stubs which doubles as a handy reference.
Contribution Guidelines
New contributions are super welcome!
- Fork the repository
- Create a new branch for your changes (
git checkout -b feature/amazing-api
) - Make your changes
- Run the tests (
./vendor/bin/pest
) - Run Larastan (
./vendor/bin/phpstan analyse
) - Submit a pull request
Code Style & Standards
- Pint is installed, so simply run
vendor/bin/pint
to make your code clean - For new APIs and API calls:
- Add feature tests with stubs (see existing examples)
- Ensure stubs are redacted of sensitive information
- Follow the existing naming conventions:
- Capitalize only the first letter of API's name (e.g.,
BulkSms
,Zadomains
) - For compound names, remove also don't capatalize (e.g.,
Hellopeter
) - Getters should not be prepended by "get" (e.g.,
message()
instead ofgetMessage()
) - Setter should be prepended by "set", e.g.
setServer()
- All API responses should follow this format:
Need Help?
If you have an idea for a new API or API call but don't have time to implement it, feel free to open a new issue to see if we can do an implementation.
All versions of api-collection with dependencies
illuminate/support Version ^8.12|^9.0|^10.0|^11.0|^12.0
spatie/laravel-ray Version ^1.40
spatie/ssh Version ^1.13