ahoulgrave / bear
Bear Component
v1.2.1
2017-12-11 21:11 UTC
Requires
- psr/container: ^1.0
- symfony/event-dispatcher: ^3.2
- symfony/http-foundation: ^3.2
Requires (Dev)
- php-coveralls/php-coveralls: ^1.0
- phpunit/phpunit: ^6.4
README
Bear PHP Component Project
Requirements
- PHP 7.1+
Installation
You can install bear using composer
composer require ahoulgrave/bear
Usage
<?php require 'vendor/autoload.php'; use Bear\App; use Bear\Routing\SymfonyRoutingAdapter; use Zend\ServiceManager\ServiceManager; $config = [ 'services' => [ MyController::class => new MyController(), ], 'factories' => [ 'routingAdapter' => function () { $loader = ...; $resource = ...; return new SymfonyRoutingAdapter($loader, $resource); }, ], ]; $app = new App(new ServiceManager($config), 'routingAdapter'); $app->run();
Dependency containers
As first argument, you can provide any PSR-11 Container. Here are some you can use:
Routing adapters
You need at least one routing adapter to run an application