# Installation
# Using Composer
To install this package, we recommend using [Composer][https://getcomposer.org/]:
$ composer require eonx-com/easy-api-platform
# Integrating with Symfony
# Registering the Bundle
If you're using [Symfony Flex][https://flex.symfony.com/], the bundle registration step has already been done for you automatically. If not, follow these simple steps to register the bundle manually:
Open the
config/bundles.php
file in your Symfony project.Add the following line to the file:
// config/bundles.php return [ // Other bundles ... EonX\EasyApiPlatform\Bridge\Symfony\EasyApiPlatformSymfonyBundle::class => ['all' => true], ];
That's it! You have now successfully installed and registered the EasyApiPlatform bundle for use in your Symfony application. Happy coding!