axytos / financial-services-api-sdk
Installs: 5 125
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Requires
- php: >=5.6.0
Requires (Dev)
- phpunit/phpunit: ^5.7 || ^11.1
- dev-main
- 1.7.0+20241030.1
- 1.7.0-rc+20241023.2
- 1.7.0-alpha+20241014.1
- 1.6.19+20240725.2
- 1.6.19-rc+20240724.12
- 1.6.18+20240724.7
- 1.6.18-rc+20240711.2
- 1.6.17+20240724.5
- 1.6.17-rc+20240710.1
- 1.6.16+20240724.3
- 1.6.16-rc+20240708.1
- 1.6.15+20240709.2
- 1.6.15-rc+20240614.1
- 1.6.14-rc+20240613.1
- 1.6.14-alpha+20240610.58
- 1.6.13-rc+20240610.57
- 1.6.12-rc+20240607.20
- 1.6.11+20240611.1
- 1.6.11-rc+20240607.3
- 1.6.10+20240610.59
- 1.6.9+20240604.2
- 1.6.8+20240524.3
- 1.6.7+20240523.2
- 1.6.6+20240522.3
- 1.6.5+20240517.1
- 1.6.4+20240516.3
- 1.6.3+20240506.2
- 1.6.2+20240424.4
- 1.6.1+20240415.2
- 1.6.0+20240409.2
- 1.5.0+20240409.1
- 1.4.21+20240322.1
- 1.4.20+20240308.1
- 1.4.19+20240307.1
- 1.4.18+20240227.1
- 1.4.17+20240226.1
- 1.4.16+20240214.1
- 1.4.15+20240213.2
- 1.4.14+20240213.1
- 1.4.12+20240131.1
- 1.4.11+20240130.1
- 1.4.10+20231201.1
- 1.4.9+20231115.1
- 1.4.8+20230721.1
- 1.4.7+20230511.3
- 1.4.6+20230505.2
- 1.4.5+20230505.1
- 1.4.4+20230320.1
- 1.4.3+20230310.1
- 1.4.2+20230308.1
- 1.4.1+20230225.2
- 1.4.0+20230225.1
- 1.3.0+20230201.3
- 1.2.0+20221121.2
- 1.1.0+20221028.2
- 1.0.0
- dev-stage
- dev-develop
This package is auto-updated.
Last update: 2024-11-30 14:00:29 UTC
README
This package provides a scoped / embedded wrapper around the generated OpenAPI client code for api.axytos.com.
General Information
This package should be compatibile with PHP 5.6 up to the most current version of PHP.
OpenAPI client code is:
- generated with openapitools/openapi-generator-cli in a recent version
- scoped with humbug/php-scoper
- downgraded to PHP 5.6 with rectorphp/rector
Polyfills are used from:
Security
OpenAPI client code is generated with openapitools/openapi-generator-cli and includes 3rd-party dependencies.
For security reasons a recent version of the generator is used where the introduced 3rd-party dependencies have no known security advisories.
3rd-party dependencies in recent versions need to be downgraded to be compatible with PHP 5.6. This is done automatically with rectorphp/rector which only affects language level compatibility. Logic level security measures of a dependency should not be affected.
If 3rd-party dependencies depend on language level security features (like random_bytes
) these features are substitued through the following polyfills:
Security advisories for 3rd-party dependencies can be checked with:
PHP compatibility in detail
In a set theoretic sense the code should be compatible with the intersection langauge of PHP 5.6, ... , PHP 8.1.
This means we cannot use features of PHP which ...
- ... are present in PHP 5.6 but not in newer versions of PHP
- ... are present in newer versions of PHP but not in PHP 5.6
Downgrad to PHP 5.6 is conducted automatically with rectorphp/rector.
However, some incompatibilities remain and need to be addressed differently.
Addressed Incompatibilities
(1) hrtime
see: https://www.php.net/manual/de/function.hrtime.php
hrtime
wird verwendet in:
guzzlehttp/guzzle/src/Utils.php
hrtime
is only used if it is present in the used version of PHP.
No adjustments are necessary.
(2) throw
inside __toString
see: https://www.php.net/manual/en/language.oop5.magic.php#object.tostring
throw
inside __toString
is used in:
guzzlehttp/psr7/src/PumpStream.php
guzzlehttp/psr7/src/AppendStream.php
guzzlehttp/psr7/src/StreamDecoratorTrait.php
guzzlehttp/psr7/src/Stream.php
guzzlehttp/psr7/src/FnStream.php
Exceptions are thrown depending on the used version of PHP. No adjustments are necessary.
(3) Error
and TypeError
see: https://www.php.net/manual/de/class.error.php
Error
and TypeError
is used in:
guzzlehttp/psr7/src/Header.php
guzzlehttp/guzzle/src/Utils.php
guzzlehttp/guzzle/src/Handler/MockHandler.php
symfony/polyfill is used as polyfill.
(4) random_bytes
see: https://www.php.net/manual/en/function.random-bytes.php
random_bytes
is used in:
guzzlehttp/psr7/src/MultipartStream.php
symfony/polyfill is used as polyfill.