mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-03-24 00:32:17 +01:00
Add nyholm/sunflower (#1274)
This commit is contained in:
3
nyholm/sunflower/0.2/config/bundles.php
Normal file
3
nyholm/sunflower/0.2/config/bundles.php
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
return [];
|
||||||
0
nyholm/sunflower/0.2/config/packages/.gitignore
vendored
Normal file
0
nyholm/sunflower/0.2/config/packages/.gitignore
vendored
Normal file
17
nyholm/sunflower/0.2/config/services.yaml
Normal file
17
nyholm/sunflower/0.2/config/services.yaml
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
# This file is the entry point to configure your own services.
|
||||||
|
# Files in the packages/ subdirectory configure your dependencies.
|
||||||
|
|
||||||
|
# Put parameters here that don't need to change on each machine where the app is deployed
|
||||||
|
# https://symfony.com/doc/current/best_practices/configuration.html#application-related-configuration
|
||||||
|
parameters:
|
||||||
|
|
||||||
|
services:
|
||||||
|
_defaults:
|
||||||
|
autowire: true
|
||||||
|
autoconfigure: true
|
||||||
|
|
||||||
|
App\:
|
||||||
|
resource: '../src/'
|
||||||
|
exclude:
|
||||||
|
- '../src/Entity/'
|
||||||
|
- '../src/Kernel.php'
|
||||||
16
nyholm/sunflower/0.2/manifest.json
Normal file
16
nyholm/sunflower/0.2/manifest.json
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"copy-from-recipe": {
|
||||||
|
"config/": "%CONFIG_DIR%/",
|
||||||
|
"src/": "%SRC_DIR%/"
|
||||||
|
},
|
||||||
|
"env": {
|
||||||
|
"APP_ENV": "dev"
|
||||||
|
},
|
||||||
|
"gitignore": [
|
||||||
|
"/.env.local",
|
||||||
|
"/.env.local.php",
|
||||||
|
"/.env.*.local",
|
||||||
|
"/%VAR_DIR%/",
|
||||||
|
"/vendor/"
|
||||||
|
]
|
||||||
|
}
|
||||||
11
nyholm/sunflower/0.2/src/Kernel.php
Normal file
11
nyholm/sunflower/0.2/src/Kernel.php
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace App;
|
||||||
|
|
||||||
|
use Nyholm\SunflowerKernel;
|
||||||
|
|
||||||
|
class Kernel extends SunflowerKernel
|
||||||
|
{
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user