mirror of
https://github.com/standardebooks/web.git
synced 2025-07-16 03:16:36 -04:00
Add Composer autoloading functions and PHPStan for testing
This commit is contained in:
parent
e198c4db65
commit
f5d7d4e02a
1518 changed files with 169063 additions and 30 deletions
61
vendor/nette/bootstrap/readme.md
vendored
Normal file
61
vendor/nette/bootstrap/readme.md
vendored
Normal file
|
@ -0,0 +1,61 @@
|
|||
Nette Bootstrap
|
||||
===============
|
||||
|
||||
[](https://packagist.org/packages/nette/bootstrap)
|
||||
[](https://travis-ci.org/nette/bootstrap)
|
||||
[](https://coveralls.io/github/nette/bootstrap?branch=master)
|
||||
[](https://github.com/nette/bootstrap/releases)
|
||||
[](https://github.com/nette/bootstrap/blob/master/license.md)
|
||||
|
||||
File `bootstrap.php` loads Nette Framework and all libraries that we depend on:
|
||||
|
||||
```php
|
||||
require __DIR__ . '/../vendor/autoload.php';
|
||||
```
|
||||
|
||||
Class `Configurator` creates so called DI container and handles application initialization.
|
||||
|
||||
```php
|
||||
$configurator = new Nette\Configurator;
|
||||
```
|
||||
|
||||
Activates Tracy in strict mode:
|
||||
|
||||
```php
|
||||
//$configurator->setDebugMode(true);
|
||||
$configurator->enableTracy(__DIR__ . '/../log');
|
||||
```
|
||||
|
||||
Setup directory for temporary files
|
||||
|
||||
```php
|
||||
$configurator->setTempDirectory(__DIR__ . '/../temp');
|
||||
```
|
||||
|
||||
Activate [autoloading](https://doc.nette.org/en/auto-loading#toc-nette-loaders-robotloader), that will automatically load all the files with our classes:
|
||||
|
||||
```php
|
||||
$configurator->createRobotLoader()
|
||||
->addDirectory(__DIR__)
|
||||
->addDirectory(__DIR__ . '/../vendor/others')
|
||||
->register();
|
||||
```
|
||||
|
||||
And according to the configuration files it generates a DI container. Everything else depends on it.
|
||||
|
||||
We will return this DI Container as a result of calling `app/boostrap.php`
|
||||
|
||||
```php
|
||||
$configurator->addConfig(__DIR__ . '/config/config.neon');
|
||||
$configurator->addConfig(__DIR__ . '/config/config.local.neon');
|
||||
return $configurator->createContainer();
|
||||
```
|
||||
|
||||
and we will store it as local variable in `www/index.php` and run the application:
|
||||
|
||||
```php
|
||||
$container = require __DIR__ . '/../app/bootstrap.php';
|
||||
$container->getService('application')->run();
|
||||
```
|
||||
|
||||
That's it.
|
Loading…
Add table
Add a link
Reference in a new issue