nyholm/sunflower

Dotenv

APP_ENV=dev

.gitignore

/.env.local
/.env.local.php
/.env.*.local
/%VAR_DIR%/
/vendor/

Generated files

config/bundles.php

<?php

return [];

config/packages/.gitignore

# Empty file

config/services.yaml

# 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'

src/Kernel.php

<?php

declare(strict_types=1);

namespace App;

use Nyholm\SunflowerKernel;

class Kernel extends SunflowerKernel
{
}