tilomotion / fuelsdk
Php Sdk to connect with Api Fuel
v2.5.3
2025-12-23 13:15 UTC
Requires
- ext-curl: *
- ext-json: *
- monolog/monolog: *
- dev-master
- v2.5.3
- v2.5.2
- v2.5.1
- v2.5.0
- v2.4.0
- v2.3.1
- v2.3.0
- v2.2.2
- v2.2.1
- v2.2.0
- v2.1.15
- v2.1.14
- v2.1.13
- v2.1.12
- v2.1.11
- v2.1.10
- v2.1.9
- v2.1.8
- v2.1.7
- v2.1.6
- v2.1.5
- v2.1.4
- v2.1.3
- v2.1.2
- v2.1.1
- v2.1.0
- v2.0.11
- v2.0.10
- v2.0.9
- v2.0.8
- v2.0.7
- v2.0.6
- v2.0.5
- v2.0.4
- v2.0.3
- v2.0.2
- v2.0.1
- v2.0.0
- v1.0.9
- v1.0.8
- v1.0.7
- v1.0.6
- v1.0.5
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- dev-develop
- dev-hotfix/add-simulacion-gancho-path
- dev-feature/agregar_token_caducidad
- dev-feature/agregar_rutas_multipublicacion
This package is auto-updated.
Last update: 2025-12-23 13:15:43 UTC
README
This library allow use Fuel's API with all kind of authentication.
Installation
Install the latest version with..
$ composer require tilomotion/fuelsdk
HTTP CODES
- 200: OK
- 204: NOT FOUND. Element's Id not found for this license. Available on GET or DELETE for item or list. On Create or Update when related object's id not exists.
- 400: Insufficient parameters on request. Normally on PUT or POST request.
- 401: Invalid credentials, require refresh.
- 409: Already exists element. Usually on POST request.
- 412: Already exists on Dms or other external platform
- 416: Exceeded results obteined.
- 421: Fail login or conection with Dms or other external platform.
- 500: Internal Server Error. Report to developers.
Documentation
New in 2.0.0
- Login B2B.
$conn = new ConnectionB2b("pass", "key", $logger, "DEV");
New in 1.0.8
- Continuous integration of bitbucket repository with packagist.
- Constants with the path of the services exposed in the Fuel API. Use class WebService.
$params[] = new QueryOrder("fechaAlta", QueryOrder::FUEL_STR_ORDER_DESC); $conn->requestWilcardGet(WebService::PATH_USER_LIST, $params);
New in 2.2.0
- Not sufix queryParam allowed by boolean parameter
- NotNull sufix queryParam allowed by boolean parameter
$params[] = new QueryParam("fechaAlta", QueryParam::FUEL_INT_QUERY_RELATION_IS_NULL, /* For apply negation !=*/ true); $conn->requestWilcardGet(WebService::PATH_USER_LIST, $params); - Fix urlEncoded only in specified keys
Third Party Packages
Third party handlers, formatters and processors are listed in the wiki. You can also add your own there if you publish one.
About
Requirements
- Fuel sdk works with PHP 5.4 or above.
Submitting bugs and feature requests
Bugs and feature request are tracked on Bitbucket
Framework Integrations
- Frameworks and libraries using PSR-3 can be used very easily with Monolog since it implements the interface.
Author
Alejandro Gago Encinas - agago@tilomotion.com
Carmelo RamÃrez Robles - cramirez@tilomotion.com
License
FuelSdk is licensed under the MIT License - see the LICENSE file for details