mrgoodbytes8667 / symfony-badge-bundle
A Symfony bundle for testing versions and providing context info
Installs: 76
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: ^8.1
- ext-json: *
- composer/semver: ^3.3
- doctrine/orm: ^2.8 | ^3.0
- mrgoodbytes8667/enum-serializer-bundle: ^4.1 | ^5.0 | ^6.0
- symfony/framework-bundle: ^6.2 | ^7.0
- symfony/http-client: ^6.2 | ^7.0
- symfony/http-foundation: ^6.2 | ^7.0
- symfony/serializer: ^6.2 | ^7.0
Requires (Dev)
- doctrine/common: ^3.0
- rector/rector: ^0.13 | ^0.14 | ^0.15 | ^0.16 | ^0.17
- symfony/test-pack: ^1.0.8
- symfony/var-dumper: ^6.2 | ^7.0
Conflicts
- phpunit/phpunit: <9.5 | 9.5.8 | >=10
- symfony/string: <6.2
README
A Symfony bundle for testing versions and providing context info
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/symfony-badge-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/symfony-badge-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\SymfonyBadge\BytesSymfonyBadgeBundle::class => ['all' => true], ];