add chapter 11 solutions
This commit is contained in:
parent
e03416ea01
commit
58453b6354
21 changed files with 1975 additions and 0 deletions
51
implementation/11/composer.json
Normal file
51
implementation/11/composer.json
Normal file
|
@ -0,0 +1,51 @@
|
|||
{
|
||||
"name": "lubian/no-framework",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Lubian\\NoFramework\\": "src/"
|
||||
}
|
||||
},
|
||||
"authors": [
|
||||
{
|
||||
"name": "example",
|
||||
"email": "test@example.com"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"php": ">=8.1",
|
||||
"filp/whoops": "^2.14",
|
||||
"laminas/laminas-diactoros": "^2.11",
|
||||
"nikic/fast-route": "^1.3",
|
||||
"psr/http-server-handler": "^1.0",
|
||||
"psr/container": "^1.0",
|
||||
"php-di/php-di": "^6.4",
|
||||
"mustache/mustache": "^2.14"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpstan/phpstan": "^1.6",
|
||||
"symfony/var-dumper": "^6.0",
|
||||
"slevomat/coding-standard": "^7.2",
|
||||
"symplify/easy-coding-standard": "^10.2",
|
||||
"rector/rector": "^0.12.23",
|
||||
"phpstan/extension-installer": "^1.1",
|
||||
"phpstan/phpstan-strict-rules": "^1.2",
|
||||
"thecodingmachine/phpstan-strict-rules": "^1.0"
|
||||
},
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
"dealerdirect/phpcodesniffer-composer-installer": true,
|
||||
"phpstan/extension-installer": true
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"serve": [
|
||||
"Composer\\Config::disableProcessTimeout",
|
||||
"php -S 0.0.0.0:1235 -t public"
|
||||
],
|
||||
"phpstan": "./vendor/bin/phpstan analyze",
|
||||
"baseline": "./vendor/bin/phpstan analyze --generate-baseline",
|
||||
"check": "./vendor/bin/ecs",
|
||||
"fix": "./vendor/bin/ecs --fix",
|
||||
"rector": "./vendor/bin/rector process"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue