mareksokol / silex-bootstrap
Bootstrap for Silex based API
Installs: 12
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 0
Forks: 0
Open Issues: 0
Type:project
Requires
- php: >=7.1.0
- dflydev/doctrine-orm-service-provider: ^2.0
- doctrine/dbal: ^2.6
- doctrine/migrations: ^1.5
- knplabs/console-service-provider: ^2.1
- monolog/monolog: ^1.23
- silex/silex: ^2.0
- symfony/validator: ^3.3.6
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.8
- phpunit/phpunit: ~6.3
This package is not auto-updated.
Last update: 2025-03-26 10:35:20 UTC
README
Silex-bootstrap is an already setup Silex project dedicated for lightweight, RESTful APIs.
Installation
To start a new project, run:
composer create-project mareksokol/silex-bootstrap <target-dir>
You need also to create config file in root directory:
cp config.php.dist config.php
Directory structure
The directory structure is the following
bin/
src/
Controller/
Entity/
Migrations/
Repository/
Service/
Provider/
storage/
logs/
proxies/
tests/
web/
bin/ place for all executables, eg. command line tool
src/ is the root of application, contains application files: controllers, entities, migrations, repositories, services, providers and bootstrap file
storage/ all static files, including application logs
test/ contains unit tests
web/ contains everything which is exposed - HTTP server should be configured to point this place as root
Usage
Configuration
All configuration should be places in config.php
file. To define new configuration parameters need to add definition in App\Service\Provider\ConfigServiceProvider::$config
.
Controllers
Controllers should inherit from App\Controller\AbstractController
- this class implements several helper methods to simplify output from API.
To register new controller need to add declaration in App\Bootstrap::loadControllers()
.
Routes
Routes are defined in App\Bootstrap::routes()
.
Services
Services are registered via service providers in App\Bootstrap::loadServices()
. Custom service providers should be placed in App\Service\Provider
namespace.
Database
All database mechanism is based on Doctrine2 framework.
There is dedicated namespace App\Entity
for all doctrine classes (entities, repositories: App\Entity\Repository
and migrations: App\Entity\Migrations
).