Implement /update-check endpoint aligned with remote OpenAPI spec:
- Add checkForUpdates() method to LicenseClientInterface
- Add UpdateInfo DTO for update check responses
- Add ProductNotFoundException for product_not_found error
- Update local openapi.json to v0.4.0
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Add complete API endpoints reference with request/response formats
- Add recursive key sorting for nested objects in signatures
- Add comprehensive error codes table with HTTP status codes
- Add rate limiting implementation with configurable limits
- Add complete WordPress plugin example with all handlers
- Add security sections: HTTPS, input sanitization, caching conflicts
- Update PHP version requirement to 8.3 for consistency
- Expand troubleshooting section with more scenarios
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Create docs/client-implementation.md with full integration guide
- Document all classes: clients, DTOs, exceptions, security classes
- Add integration examples for WordPress, Laravel, Symfony
- Include best practices and troubleshooting sections
- Update README with documentation links
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
First minor release with complete license client functionality:
- Object-oriented client library with PSR support
- Secure client with HMAC-SHA256 signature verification
- Comprehensive test suite (66 tests)
- Full documentation including server implementation guide
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Set up composer.json with package metadata and PSR-4 autoloading
- Add symfony/http-client ^7.0 as HTTP client dependency
- Create project structure (src/, tests/, tmp/)
- Add README.md with project overview
- Add CHANGELOG.md to track version history
- Add .gitignore for vendor and cache files
- Include OpenAPI specification in tmp/openapi.json
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>