Add initial set of files
This commit is contained in:
		
							
								
								
									
										19
									
								
								.env
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								.env
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,19 @@
 | 
			
		||||
# In all environments, the following files are loaded if they exist,
 | 
			
		||||
# the latter taking precedence over the former:
 | 
			
		||||
#
 | 
			
		||||
#  * .env                contains default values for the environment variables needed by the app
 | 
			
		||||
#  * .env.local          uncommitted file with local overrides
 | 
			
		||||
#  * .env.$APP_ENV       committed environment-specific defaults
 | 
			
		||||
#  * .env.$APP_ENV.local uncommitted environment-specific overrides
 | 
			
		||||
#
 | 
			
		||||
# Real environment variables win over .env files.
 | 
			
		||||
#
 | 
			
		||||
# DO NOT DEFINE PRODUCTION SECRETS IN THIS FILE NOR IN ANY OTHER COMMITTED FILES.
 | 
			
		||||
#
 | 
			
		||||
# Run "composer dump-env prod" to compile .env files for production use (requires symfony/flex >=1.2).
 | 
			
		||||
# https://symfony.com/doc/current/best_practices.html#use-environment-variables-for-infrastructure-configuration
 | 
			
		||||
 | 
			
		||||
###> symfony/framework-bundle ###
 | 
			
		||||
APP_ENV=dev
 | 
			
		||||
APP_SECRET=a43146c7cbb5cf00c48f328b34771292
 | 
			
		||||
###< symfony/framework-bundle ###
 | 
			
		||||
							
								
								
									
										10
									
								
								.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@ -0,0 +1,10 @@
 | 
			
		||||
 | 
			
		||||
###> symfony/framework-bundle ###
 | 
			
		||||
/.env.local
 | 
			
		||||
/.env.local.php
 | 
			
		||||
/.env.*.local
 | 
			
		||||
/config/secrets/prod/prod.decrypt.private.php
 | 
			
		||||
/public/bundles/
 | 
			
		||||
/var/
 | 
			
		||||
/vendor/
 | 
			
		||||
###< symfony/framework-bundle ###
 | 
			
		||||
							
								
								
									
										17
									
								
								bin/console
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										17
									
								
								bin/console
									
									
									
									
									
										Executable file
									
								
							@ -0,0 +1,17 @@
 | 
			
		||||
#!/usr/bin/env php
 | 
			
		||||
<?php
 | 
			
		||||
 | 
			
		||||
use App\Kernel;
 | 
			
		||||
use Symfony\Bundle\FrameworkBundle\Console\Application;
 | 
			
		||||
 | 
			
		||||
if (!is_file(dirname(__DIR__).'/vendor/autoload_runtime.php')) {
 | 
			
		||||
    throw new LogicException('Symfony Runtime is missing. Try running "composer require symfony/runtime".');
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
 | 
			
		||||
 | 
			
		||||
return function (array $context) {
 | 
			
		||||
    $kernel = new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
 | 
			
		||||
 | 
			
		||||
    return new Application($kernel);
 | 
			
		||||
};
 | 
			
		||||
							
								
								
									
										67
									
								
								composer.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										67
									
								
								composer.json
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,67 @@
 | 
			
		||||
{
 | 
			
		||||
    "type": "project",
 | 
			
		||||
    "license": "proprietary",
 | 
			
		||||
    "minimum-stability": "stable",
 | 
			
		||||
    "prefer-stable": true,
 | 
			
		||||
    "require": {
 | 
			
		||||
        "php": ">=7.2.5",
 | 
			
		||||
        "ext-ctype": "*",
 | 
			
		||||
        "ext-iconv": "*",
 | 
			
		||||
        "symfony/console": "5.4.*",
 | 
			
		||||
        "symfony/dotenv": "5.4.*",
 | 
			
		||||
        "symfony/flex": "^1.17|^2",
 | 
			
		||||
        "symfony/framework-bundle": "5.4.*",
 | 
			
		||||
        "symfony/runtime": "5.4.*",
 | 
			
		||||
        "symfony/yaml": "5.4.*"
 | 
			
		||||
    },
 | 
			
		||||
    "require-dev": {
 | 
			
		||||
    },
 | 
			
		||||
    "config": {
 | 
			
		||||
        "allow-plugins": {
 | 
			
		||||
            "composer/package-versions-deprecated": true,
 | 
			
		||||
            "symfony/flex": true,
 | 
			
		||||
            "symfony/runtime": true
 | 
			
		||||
        },
 | 
			
		||||
        "optimize-autoloader": true,
 | 
			
		||||
        "preferred-install": {
 | 
			
		||||
            "*": "dist"
 | 
			
		||||
        },
 | 
			
		||||
        "sort-packages": true
 | 
			
		||||
    },
 | 
			
		||||
    "autoload": {
 | 
			
		||||
        "psr-4": {
 | 
			
		||||
            "App\\": "src/"
 | 
			
		||||
        }
 | 
			
		||||
    },
 | 
			
		||||
    "autoload-dev": {
 | 
			
		||||
        "psr-4": {
 | 
			
		||||
            "App\\Tests\\": "tests/"
 | 
			
		||||
        }
 | 
			
		||||
    },
 | 
			
		||||
    "replace": {
 | 
			
		||||
        "symfony/polyfill-ctype": "*",
 | 
			
		||||
        "symfony/polyfill-iconv": "*",
 | 
			
		||||
        "symfony/polyfill-php72": "*"
 | 
			
		||||
    },
 | 
			
		||||
    "scripts": {
 | 
			
		||||
        "auto-scripts": {
 | 
			
		||||
            "cache:clear": "symfony-cmd",
 | 
			
		||||
            "assets:install %PUBLIC_DIR%": "symfony-cmd"
 | 
			
		||||
        },
 | 
			
		||||
        "post-install-cmd": [
 | 
			
		||||
            "@auto-scripts"
 | 
			
		||||
        ],
 | 
			
		||||
        "post-update-cmd": [
 | 
			
		||||
            "@auto-scripts"
 | 
			
		||||
        ]
 | 
			
		||||
    },
 | 
			
		||||
    "conflict": {
 | 
			
		||||
        "symfony/symfony": "*"
 | 
			
		||||
    },
 | 
			
		||||
    "extra": {
 | 
			
		||||
        "symfony": {
 | 
			
		||||
            "allow-contrib": false,
 | 
			
		||||
            "require": "5.4.*"
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										2628
									
								
								composer.lock
									
									
									
										generated
									
									
									
										Normal file
									
								
							
							
						
						
									
										2628
									
								
								composer.lock
									
									
									
										generated
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
							
								
								
									
										5
									
								
								config/bundles.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								config/bundles.php
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,5 @@
 | 
			
		||||
<?php
 | 
			
		||||
 | 
			
		||||
return [
 | 
			
		||||
    Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
 | 
			
		||||
];
 | 
			
		||||
							
								
								
									
										19
									
								
								config/packages/cache.yaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								config/packages/cache.yaml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,19 @@
 | 
			
		||||
framework:
 | 
			
		||||
    cache:
 | 
			
		||||
        # Unique name of your app: used to compute stable namespaces for cache keys.
 | 
			
		||||
        #prefix_seed: your_vendor_name/app_name
 | 
			
		||||
 | 
			
		||||
        # The "app" cache stores to the filesystem by default.
 | 
			
		||||
        # The data in this cache should persist between deploys.
 | 
			
		||||
        # Other options include:
 | 
			
		||||
 | 
			
		||||
        # Redis
 | 
			
		||||
        #app: cache.adapter.redis
 | 
			
		||||
        #default_redis_provider: redis://localhost
 | 
			
		||||
 | 
			
		||||
        # APCu (not recommended with heavy random-write workloads as memory fragmentation can cause perf issues)
 | 
			
		||||
        #app: cache.adapter.apcu
 | 
			
		||||
 | 
			
		||||
        # Namespaced pools use the above "app" backend by default
 | 
			
		||||
        #pools:
 | 
			
		||||
            #my.dedicated.cache: null
 | 
			
		||||
							
								
								
									
										24
									
								
								config/packages/framework.yaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										24
									
								
								config/packages/framework.yaml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,24 @@
 | 
			
		||||
# see https://symfony.com/doc/current/reference/configuration/framework.html
 | 
			
		||||
framework:
 | 
			
		||||
    secret: '%env(APP_SECRET)%'
 | 
			
		||||
    #csrf_protection: true
 | 
			
		||||
    http_method_override: false
 | 
			
		||||
 | 
			
		||||
    # Enables session support. Note that the session will ONLY be started if you read or write from it.
 | 
			
		||||
    # Remove or comment this section to explicitly disable session support.
 | 
			
		||||
    session:
 | 
			
		||||
        handler_id: null
 | 
			
		||||
        cookie_secure: auto
 | 
			
		||||
        cookie_samesite: lax
 | 
			
		||||
        storage_factory_id: session.storage.factory.native
 | 
			
		||||
 | 
			
		||||
    #esi: true
 | 
			
		||||
    #fragments: true
 | 
			
		||||
    php_errors:
 | 
			
		||||
        log: true
 | 
			
		||||
 | 
			
		||||
when@test:
 | 
			
		||||
    framework:
 | 
			
		||||
        test: true
 | 
			
		||||
        session:
 | 
			
		||||
            storage_factory_id: session.storage.factory.mock_file
 | 
			
		||||
							
								
								
									
										12
									
								
								config/packages/routing.yaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								config/packages/routing.yaml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,12 @@
 | 
			
		||||
framework:
 | 
			
		||||
    router:
 | 
			
		||||
        utf8: true
 | 
			
		||||
 | 
			
		||||
        # Configure how to generate URLs in non-HTTP contexts, such as CLI commands.
 | 
			
		||||
        # See https://symfony.com/doc/current/routing.html#generating-urls-in-commands
 | 
			
		||||
        #default_uri: http://localhost
 | 
			
		||||
 | 
			
		||||
when@prod:
 | 
			
		||||
    framework:
 | 
			
		||||
        router:
 | 
			
		||||
            strict_requirements: null
 | 
			
		||||
							
								
								
									
										5
									
								
								config/preload.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								config/preload.php
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,5 @@
 | 
			
		||||
<?php
 | 
			
		||||
 | 
			
		||||
if (file_exists(dirname(__DIR__).'/var/cache/prod/App_KernelProdContainer.preload.php')) {
 | 
			
		||||
    require dirname(__DIR__).'/var/cache/prod/App_KernelProdContainer.preload.php';
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										3
									
								
								config/routes.yaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								config/routes.yaml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,3 @@
 | 
			
		||||
#index:
 | 
			
		||||
#    path: /
 | 
			
		||||
#    controller: App\Controller\DefaultController::index
 | 
			
		||||
							
								
								
									
										4
									
								
								config/routes/framework.yaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								config/routes/framework.yaml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,4 @@
 | 
			
		||||
when@dev:
 | 
			
		||||
    _errors:
 | 
			
		||||
        resource: '@FrameworkBundle/Resources/config/routing/errors.xml'
 | 
			
		||||
        prefix: /_error
 | 
			
		||||
							
								
								
									
										25
									
								
								config/services.yaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										25
									
								
								config/services.yaml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,25 @@
 | 
			
		||||
# 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.html#use-parameters-for-application-configuration
 | 
			
		||||
parameters:
 | 
			
		||||
 | 
			
		||||
services:
 | 
			
		||||
    # default configuration for services in *this* file
 | 
			
		||||
    _defaults:
 | 
			
		||||
        autowire: true      # Automatically injects dependencies in your services.
 | 
			
		||||
        autoconfigure: true # Automatically registers your services as commands, event subscribers, etc.
 | 
			
		||||
 | 
			
		||||
    # makes classes in src/ available to be used as services
 | 
			
		||||
    # this creates a service per class whose id is the fully-qualified class name
 | 
			
		||||
    App\:
 | 
			
		||||
        resource: '../src/'
 | 
			
		||||
        exclude:
 | 
			
		||||
            - '../src/DependencyInjection/'
 | 
			
		||||
            - '../src/Entity/'
 | 
			
		||||
            - '../src/Kernel.php'
 | 
			
		||||
            - '../src/Tests/'
 | 
			
		||||
 | 
			
		||||
    # add more service definitions when explicit configuration is needed
 | 
			
		||||
    # please note that last definitions always *replace* previous ones
 | 
			
		||||
							
								
								
									
										9
									
								
								public/index.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								public/index.php
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,9 @@
 | 
			
		||||
<?php
 | 
			
		||||
 | 
			
		||||
use App\Kernel;
 | 
			
		||||
 | 
			
		||||
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
 | 
			
		||||
 | 
			
		||||
return function (array $context) {
 | 
			
		||||
    return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
 | 
			
		||||
};
 | 
			
		||||
							
								
								
									
										0
									
								
								src/Controller/.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								src/Controller/.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
								
								
									
										11
									
								
								src/Kernel.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								src/Kernel.php
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,11 @@
 | 
			
		||||
<?php
 | 
			
		||||
 | 
			
		||||
namespace App;
 | 
			
		||||
 | 
			
		||||
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
 | 
			
		||||
use Symfony\Component\HttpKernel\Kernel as BaseKernel;
 | 
			
		||||
 | 
			
		||||
class Kernel extends BaseKernel
 | 
			
		||||
{
 | 
			
		||||
    use MicroKernelTrait;
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										145
									
								
								symfony.lock
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										145
									
								
								symfony.lock
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,145 @@
 | 
			
		||||
{
 | 
			
		||||
    "psr/cache": {
 | 
			
		||||
        "version": "1.0.1"
 | 
			
		||||
    },
 | 
			
		||||
    "psr/container": {
 | 
			
		||||
        "version": "1.1.2"
 | 
			
		||||
    },
 | 
			
		||||
    "psr/event-dispatcher": {
 | 
			
		||||
        "version": "1.0.0"
 | 
			
		||||
    },
 | 
			
		||||
    "psr/log": {
 | 
			
		||||
        "version": "1.1.4"
 | 
			
		||||
    },
 | 
			
		||||
    "symfony/cache": {
 | 
			
		||||
        "version": "v5.4.2"
 | 
			
		||||
    },
 | 
			
		||||
    "symfony/cache-contracts": {
 | 
			
		||||
        "version": "v2.5.0"
 | 
			
		||||
    },
 | 
			
		||||
    "symfony/config": {
 | 
			
		||||
        "version": "v5.4.2"
 | 
			
		||||
    },
 | 
			
		||||
    "symfony/console": {
 | 
			
		||||
        "version": "5.4",
 | 
			
		||||
        "recipe": {
 | 
			
		||||
            "repo": "github.com/symfony/recipes",
 | 
			
		||||
            "branch": "master",
 | 
			
		||||
            "version": "5.3",
 | 
			
		||||
            "ref": "da0c8be8157600ad34f10ff0c9cc91232522e047"
 | 
			
		||||
        },
 | 
			
		||||
        "files": [
 | 
			
		||||
            "bin/console"
 | 
			
		||||
        ]
 | 
			
		||||
    },
 | 
			
		||||
    "symfony/dependency-injection": {
 | 
			
		||||
        "version": "v5.4.2"
 | 
			
		||||
    },
 | 
			
		||||
    "symfony/deprecation-contracts": {
 | 
			
		||||
        "version": "v2.5.0"
 | 
			
		||||
    },
 | 
			
		||||
    "symfony/dotenv": {
 | 
			
		||||
        "version": "v5.4.2"
 | 
			
		||||
    },
 | 
			
		||||
    "symfony/error-handler": {
 | 
			
		||||
        "version": "v5.4.2"
 | 
			
		||||
    },
 | 
			
		||||
    "symfony/event-dispatcher": {
 | 
			
		||||
        "version": "v5.4.0"
 | 
			
		||||
    },
 | 
			
		||||
    "symfony/event-dispatcher-contracts": {
 | 
			
		||||
        "version": "v2.5.0"
 | 
			
		||||
    },
 | 
			
		||||
    "symfony/filesystem": {
 | 
			
		||||
        "version": "v5.4.0"
 | 
			
		||||
    },
 | 
			
		||||
    "symfony/finder": {
 | 
			
		||||
        "version": "v5.4.2"
 | 
			
		||||
    },
 | 
			
		||||
    "symfony/flex": {
 | 
			
		||||
        "version": "1.17",
 | 
			
		||||
        "recipe": {
 | 
			
		||||
            "repo": "github.com/symfony/recipes",
 | 
			
		||||
            "branch": "master",
 | 
			
		||||
            "version": "1.0",
 | 
			
		||||
            "ref": "c0eeb50665f0f77226616b6038a9b06c03752d8e"
 | 
			
		||||
        },
 | 
			
		||||
        "files": [
 | 
			
		||||
            ".env"
 | 
			
		||||
        ]
 | 
			
		||||
    },
 | 
			
		||||
    "symfony/framework-bundle": {
 | 
			
		||||
        "version": "5.4",
 | 
			
		||||
        "recipe": {
 | 
			
		||||
            "repo": "github.com/symfony/recipes",
 | 
			
		||||
            "branch": "master",
 | 
			
		||||
            "version": "5.4",
 | 
			
		||||
            "ref": "d4131812e20853626928e73d3effef44014944c0"
 | 
			
		||||
        },
 | 
			
		||||
        "files": [
 | 
			
		||||
            "config/packages/cache.yaml",
 | 
			
		||||
            "config/packages/framework.yaml",
 | 
			
		||||
            "config/preload.php",
 | 
			
		||||
            "config/routes/framework.yaml",
 | 
			
		||||
            "config/services.yaml",
 | 
			
		||||
            "public/index.php",
 | 
			
		||||
            "src/Controller/.gitignore",
 | 
			
		||||
            "src/Kernel.php"
 | 
			
		||||
        ]
 | 
			
		||||
    },
 | 
			
		||||
    "symfony/http-foundation": {
 | 
			
		||||
        "version": "v5.4.2"
 | 
			
		||||
    },
 | 
			
		||||
    "symfony/http-kernel": {
 | 
			
		||||
        "version": "v5.4.2"
 | 
			
		||||
    },
 | 
			
		||||
    "symfony/polyfill-intl-grapheme": {
 | 
			
		||||
        "version": "v1.24.0"
 | 
			
		||||
    },
 | 
			
		||||
    "symfony/polyfill-intl-normalizer": {
 | 
			
		||||
        "version": "v1.24.0"
 | 
			
		||||
    },
 | 
			
		||||
    "symfony/polyfill-mbstring": {
 | 
			
		||||
        "version": "v1.24.0"
 | 
			
		||||
    },
 | 
			
		||||
    "symfony/polyfill-php73": {
 | 
			
		||||
        "version": "v1.24.0"
 | 
			
		||||
    },
 | 
			
		||||
    "symfony/polyfill-php80": {
 | 
			
		||||
        "version": "v1.24.0"
 | 
			
		||||
    },
 | 
			
		||||
    "symfony/polyfill-php81": {
 | 
			
		||||
        "version": "v1.24.0"
 | 
			
		||||
    },
 | 
			
		||||
    "symfony/routing": {
 | 
			
		||||
        "version": "5.4",
 | 
			
		||||
        "recipe": {
 | 
			
		||||
            "repo": "github.com/symfony/recipes",
 | 
			
		||||
            "branch": "master",
 | 
			
		||||
            "version": "5.3",
 | 
			
		||||
            "ref": "44633353926a0382d7dfb0530922c5c0b30fae11"
 | 
			
		||||
        },
 | 
			
		||||
        "files": [
 | 
			
		||||
            "config/packages/routing.yaml",
 | 
			
		||||
            "config/routes.yaml"
 | 
			
		||||
        ]
 | 
			
		||||
    },
 | 
			
		||||
    "symfony/runtime": {
 | 
			
		||||
        "version": "v5.4.1"
 | 
			
		||||
    },
 | 
			
		||||
    "symfony/service-contracts": {
 | 
			
		||||
        "version": "v2.5.0"
 | 
			
		||||
    },
 | 
			
		||||
    "symfony/string": {
 | 
			
		||||
        "version": "v5.4.2"
 | 
			
		||||
    },
 | 
			
		||||
    "symfony/var-dumper": {
 | 
			
		||||
        "version": "v5.4.2"
 | 
			
		||||
    },
 | 
			
		||||
    "symfony/var-exporter": {
 | 
			
		||||
        "version": "v5.4.2"
 | 
			
		||||
    },
 | 
			
		||||
    "symfony/yaml": {
 | 
			
		||||
        "version": "v5.4.2"
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user