eureka / component-curl
Component Curl & Http Client PSR implementation.
Requires
- php: 8.1.*||8.2.*||8.3.*||8.4.*
- ext-curl: *
- ext-json: *
- nyholm/psr7: ^1.5
- psr/http-client: ^1.0
- psr/http-message: ^1.0||^2.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.62.0
- maglnet/composer-require-checker: ^4.7.1
- phpstan/phpstan: ^1.11.11
- phpstan/phpstan-phpunit: ^1.4.0
- phpunit/phpcov: ^9.0.2
- phpunit/phpunit: ^10.5.30
- shipmonk/composer-dependency-analyser: ^1.7.0
This package is auto-updated.
Last update: 2024-10-22 16:44:07 UTC
README
Why?
Component Curl & Http Client PSR implementation.
Installation
If you wish to install it in your project, require it via composer:
composer require eureka/component-curl
Usage
TODO
Contributing
See the CONTRIBUTING file.
Install / update project
You can install project with the following command:
make install
And update with the following command:
make update
NB: For the components, the composer.lock
file is not committed.
Testing & CI (Continuous Integration)
Tests
You can run tests (with coverage) on your side with following command:
make tests
You can run tests (with coverage) on your side with following command:
make integration
For prettier output (but without coverage), you can use the following command:
make testdox # run tests without coverage reports but with prettified output
Code Style
You also can run code style check with following commands:
make phpcs
You also can run code style fixes with following commands:
make phpcsf
Static Analysis
To perform a static analyze of your code (with phpstan, lvl 9 at default), you can use the following command:
make analyze
Minimal supported version:
make php-min-compatibility
Maximal supported version:
make php-max-compatibility
CI Simulation
And the last "helper" commands, you can run before commit and push, is:
make ci
License
This project is licensed under the MIT License - see the LICENSE
file for details