Skip to content

📦 Base classes and helper services to build API application via Symfony.

License

Notifications You must be signed in to change notification settings

stfalcon-studio/ApiBundle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ApiBundle

📦 Base classes and helper services to build API application via Symfony.

Scrutinizer Quality Score Build Status CodeCov License Latest Stable Version Total Downloads StyleCI

Installation

composer req stfalcon-studio/api-bundle='0.12'

Check the config/bundles.php file

By default, Symfony Flex adds this bundle to the config/bundles.php file. In case when you ignored contrib-recipe during bundle installation it would not be added. In this case add the bundle manually.

# config/bundles.php

return [
    // Other bundles...
    StfalconStudio\ApiBundle\StfalconApiBundle::class => ['all' => true],
    // Other bundles...
];

Set Up Steps

Add mappings to Doctrine ORM config

doctrine:
    orm:
        mappings:
            StfalconApiBundle:
                is_bundle: true
                type: annotation

Setup a directory for JSON schemas

The default directory is ./src/Json/Schema/. Or you can change it via bundle configuration.

stfalcon_api:
    api_host: '%env(APP_API_HOST)%'
    redis_client_jwt_black_list: "@snc_redis.jwt_black_list"
    json_schema_dir: '%kernel.project_dir%/src/Json/Schema/'

Contributing

Read the CONTRIBUTING file.