mrgoodbytes8667 / response-bundle
Symfony bundle that wraps response-common and provides shared enums for child response-bundles
Installs: 18 380
Dependents: 6
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: ^8.2
- ext-json: *
- doctrine/doctrine-bundle: ^2.3
- doctrine/orm: ^2.8 | ^3.0
- mrgoodbytes8667/date-bundle: ^1.0
- mrgoodbytes8667/enum-serializer-bundle: ^3.0 | ^4.0 | ^5.0 | ^6.0
- mrgoodbytes8667/http-client-common: ^0.3 | ^0.4.1
- symfony/console: ^6.4 | ^7.0
- symfony/security-bundle: ^6.4 | ^7.0
- symfony/security-core: ^6.4 | ^7.0
- symfony/security-csrf: ^6.4 | ^7.0
- symfony/security-http: ^6.4 | ^7.0
- symfony/string: ^6.4 | ^7.0
- symfony/uid: ^6.4 | ^7.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.4
- mrgoodbytes8667/string-mask-bundle: ^0.0.1 | ^0.0.2 | ^0.0.3 | ^1.0
- mrgoodbytes8667/test-common: ^0.2.5 | ^0.3 | ^0.4.2
- mrgoodbytes8667/test-common-faker: >=0.3.3
- rector/rector: >=0.13 <0.20.0 | ^1.0
- symfony/test-pack: ^1.0.8
- symfony/var-dumper: ^6.4 | ^7.0
Suggests
- mrgoodbytes8667/string-mask-bundle: Mask tokens when displaying them
Conflicts
- phpunit/phpunit: <9.5 | 9.5.8 | >=10
- symfony/http-client: <5.2.1
- dev-main
- 7.0.x-dev
- 6.1.x-dev
- 6.0.x-dev
- v6.0.1
- v6.0.0
- 5.4.x-dev
- v5.4.0
- 5.3.x-dev
- v5.3.0
- 5.2.x-dev
- v5.2.2
- 5.1.x-dev
- v5.1.1
- v5.1.0-BETA1
- 5.0.x-dev
- v5.0.0
- v5.0.0-BETA19
- v5.0.0-BETA18
- v5.0.0-BETA17
- v5.0.0-BETA16
- v5.0.0-BETA15
- v5.0.0-BETA14
- v5.0.0-BETA13
- v5.0.0-BETA12
- v5.0.0-BETA11
- v5.0.0-BETA10
- v5.0.0-BETA9
- v5.0.0-BETA8
- v5.0.0-BETA7
- v5.0.0-BETA6
- v5.0.0-BETA5
- v5.0.0-BETA4
- v5.0.0-BETA3
- v5.0.0-BETA2
- v5.0.0-BETA1
- 4.1.x-dev
- v4.1.1
- v4.1.0
- 4.0.x-dev
- v4.0.0
- v4.0.0-RC1
- v4.0.0-BETA1
- 3.2.x-dev
- v3.2.0
- v3.2.0-BETA1
- 3.1.x-dev
- v3.1.0
- 3.0.x-dev
- v3.0.0
- v3.0.0-RC1
- 2.1.x-dev
- v2.1.1
- v2.1.0
- v2.0.18
- v2.0.17
- v2.0.16
- v2.0.15
- v2.0.14
- v2.0.13
- v2.0.12
- 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
- v2.0.0-RC1
- v2.0.0-BETA11
- v2.0.0-BETA10
- v2.0.0-BETA9
- v2.0.0-BETA8
- v2.0.0-BETA7
- v2.0.0-BETA6
- v2.0.0-BETA5
- v2.0.0-BETA4
- v2.0.0-BETA3
- v2.0.0-BETA2
- v2.0.0-BETA1
- v1.3.2
- v1.3.1
- v1.3.0
- v1.2.0
- v1.1.0
- v1.0.1
- v1.0.0
This package is auto-updated.
Last update: 2024-11-03 16:35:23 UTC
README
A Symfony bundle that wraps response-common and provides shared classes for child response-bundles
Installation
Make sure Composer is installed globally, as explained in the installation chapter of the Composer documentation.
Applications that use Symfony Flex
Open a command console, enter your project directory and execute:
$ composer require mrgoodbytes8667/response-bundle
Applications that don't use Symfony Flex
Step 1: Download the Bundle
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
$ composer require mrgoodbytes8667/response-bundle
Step 2: Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles
in the config/bundles.php
file of your project:
// config/bundles.php return [ // ... Bytes\ResponseBundle\BytesResponseBundle::class => ['all' => true], ];
Upgrading
From * to 3.2.0
- 3.2.0+ requires PHP 8.1
- All enum classes have been changed to native PHP enums. Replace all function calls with the newer enum values (the function calls remain in place but are deprecated, and will be removed in Version 4.0)
From 3.2.0 to 4.0.0
- All enum classes have been changed to native PHP enums. Replace all function calls with the newer enum values
License
response-bundle by MrGoodBytes is licensed under a
Creative Commons Attribution-NonCommercial 4.0 International License.
Based on a work at https://github.com/mrgoodbytes8667/response-bundle.