Releases: rafaelwendel/phpsupabase
0.0.8
In version 0.0.8, was fixed the param tags for all methods (Credit to @Bartel-C8 for contribution) and fixed the getError
return type (Credit to @kevineduardo for contribution)
0.0.7
In version 0.0.7, the getHeader
method was added to the Service class. In the Database class, the executeDml
method checks the Prefer
header (Suggested by @nkt-dk). And in the QueryBuilder class, the urlencode
function was added to the $value
in the where
method (Credit to @fred-derf for contribution)
0.0.6
In version 0.0.6, the option of inserting the limit in a query was added both in the QueryBuilder class and in the createCustomQuery method (Database class). (Credit to @streeboga for contribution)
0.0.5 release
Basically version 0.0.5 now makes it possible to instantiate the service class without the need to pass rest/v1
or auth/v1
suffixes. In this way, it is possible to create auth objects and database/querybuilder objects from the same service
instance. The suffixes will be handled internally by the respective classes
0.0.4
- fix: returns an array instead of an object in Database class
0.0.3
Add "getService" method on Database and QueryBuilder classes
Add response var on Service class
0.0.2
Add "order" method on QueryBuilder class.