Add initial set of files
This commit is contained in:
		
							
								
								
									
										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
 | 
			
		||||
							
								
								
									
										15
									
								
								config/packages/framework.yaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										15
									
								
								config/packages/framework.yaml
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,15 @@
 | 
			
		||||
# see https://symfony.com/doc/current/reference/configuration/framework.html
 | 
			
		||||
framework:
 | 
			
		||||
    secret: '%env(APP_SECRET)%'
 | 
			
		||||
 | 
			
		||||
    # Note that the session will be started ONLY if you read or write from it.
 | 
			
		||||
    session: true
 | 
			
		||||
 | 
			
		||||
    #esi: true
 | 
			
		||||
    #fragments: true
 | 
			
		||||
 | 
			
		||||
when@test:
 | 
			
		||||
    framework:
 | 
			
		||||
        test: true
 | 
			
		||||
        session:
 | 
			
		||||
            storage_factory_id: session.storage.factory.mock_file
 | 
			
		||||
							
								
								
									
										10
									
								
								config/packages/routing.yaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								config/packages/routing.yaml
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,10 @@
 | 
			
		||||
framework:
 | 
			
		||||
    router:
 | 
			
		||||
        # 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';
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										5
									
								
								config/routes.yaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								config/routes.yaml
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,5 @@
 | 
			
		||||
controllers:
 | 
			
		||||
    resource:
 | 
			
		||||
        path: ../src/Controller/
 | 
			
		||||
        namespace: App\Controller
 | 
			
		||||
    type: attribute
 | 
			
		||||
							
								
								
									
										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.php'
 | 
			
		||||
        prefix: /_error
 | 
			
		||||
							
								
								
									
										20
									
								
								config/services.yaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										20
									
								
								config/services.yaml
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,20 @@
 | 
			
		||||
# 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/'
 | 
			
		||||
 | 
			
		||||
    # add more service definitions when explicit configuration is needed
 | 
			
		||||
    # please note that last definitions always *replace* previous ones
 | 
			
		||||
		Reference in New Issue
	
	Block a user