alexispplin / sendcloud-v3
Provides a client to interact with the Sendcloud v3 API in an object-oriented way.
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 1
pkg:composer/alexispplin/sendcloud-v3
Requires
- php: >=8.2.0
- php-http/client-common: ^2.7
- php-http/discovery: ^1.20
- php-http/httplug: ^2.4
- psr/http-client-implementation: ^1.0
Requires (Dev)
- nyholm/psr7: ^1.8
- php-http/mock-client: ^1.6
- phpstan/phpstan: ^2.1
- phpunit/php-code-coverage: ^11.0
- phpunit/phpunit: ^11.5
- rector/rector: ^2.3
- symfony/http-client: ^7.4
This package is auto-updated.
Last update: 2026-02-11 08:46:31 UTC
README
📦 About
Implementation of Sendcloud v3 API for PHP
Note
For v2 users, use Webador/sendcloud
(which this library is heavily inspired by)
⚙️ Requirements
- PHP 8.2+
- PSR7 & PSR17 implementation
🛠️ Installation
composer require alexispplin/sendcloud-v3
Note
This library uses HTTPlug
For this lib to work, you will need to install a PSR7 & PSR17 implementation.
Check the full documentation here : https://docs.php-http.org/en/latest/httplug/users.html
For example :
composer require symfony/http-client nyholm/psr7
🌐 Supported Endpoints
💡 Quick start
<?php use AlexisPPLIN\SendcloudV3\Endpoints\Orders; // Create client $orders = new Orders( publicKey: /* YOUR PUBLIC KEY */, secretKey: /* YOUR SECRET KEY */, partnerId: /* (optional) YOUR PARTNER ID */ ); // Retrieve an order $order = $orders->getOrder(id: 1);
🤝 Contributing
Contributions are welcome! Please follow these steps:
- Fork the repository
- Create a branch for your feature
- Commit your changes
- Create a Pull Request to the main branch
📄 License
This project is licensed under the MIT License - see the LICENSE file for details.