- Add /update-check endpoint documentation to server-implementation.md
- Add product_not_found error code to error codes table
- Add handleUpdateCheck() handler example in WordPress plugin
- Add findProduct() method stub for product lookups
- Verified client implementation aligns with server documentation
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
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>
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>