Compare commits

..

3 commits

Author SHA1 Message Date
Lance Edgar baf33e8354 build: ignore temp files 2024-09-13 18:50:38 -05:00
Lance Edgar 0e7571d967 Update changelog 2023-05-15 16:40:41 -05:00
Lance Edgar 91a2b4f078 Allow version 6.x for guzzlehttp client lib 2023-05-15 16:39:45 -05:00
3 changed files with 6 additions and 1 deletions

1
.gitignore vendored
View file

@ -1,2 +1,3 @@
*~
composer.lock
/vendor/

View file

@ -5,6 +5,10 @@ All notable changes to posterior will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## [0.1.1] - 2023-05-15
### Changed
- Allow version 6.x for guzzlehttp client lib.
## [0.1.0] - 2023-05-15
### Added
- Initial version, basic API client only.

View file

@ -16,6 +16,6 @@
}
],
"require": {
"guzzlehttp/guzzle": "^7.0"
"guzzlehttp/guzzle": "^6.0 || ^7.0"
}
}