This repository was archived by the owner on Nov 27, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
[do not merge] Change the default directory structure and use new features of 3.3 #1034
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,4 +11,4 @@ _errors: | |
prefix: /_error | ||
|
||
_main: | ||
resource: routing.yml | ||
resource: '../routing.yml' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# This file is auto-generated during the composer install | ||
parameters: | ||
database_host: 127.0.0.1 | ||
database_port: null | ||
database_name: symfony | ||
database_user: root | ||
database_password: null | ||
mailer_transport: smtp | ||
mailer_host: 127.0.0.1 | ||
mailer_user: null | ||
mailer_password: null | ||
secret: ThisTokenIsNotSoSecretChangeIt |
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
imports: | ||
- { resource: config.yml } | ||
- { resource: '../config.yml' } | ||
|
||
#doctrine: | ||
# orm: | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
action: | ||
resource: "../src/Controller/" | ||
type: annotation |
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Learn more about services, parameters and containers at | ||
# http://symfony.com/doc/current/service_container.html | ||
parameters: | ||
# parameter_name: value | ||
|
||
services: | ||
# 'My\ClassName': ~ | ||
|
||
# Auto-register common directories | ||
_defaults: | ||
# Enable constructor and getter autowiring for all services defined in this file | ||
autowire: ['__construct', 'get*'] | ||
public: false | ||
|
||
_instanceof: | ||
# Add some common tags to enable feature auto-registration | ||
Symfony\Component\Console\Command\Command: | ||
tags: ['console.command'] | ||
public: true # Mandatory | ||
|
||
Twig_ExtensionInterface: | ||
tags: ['twig.extension'] | ||
|
||
Symfony\Component\EventDispatcher\EventSubscriberInterface: | ||
tags: ['kernel.event_subscriber'] | ||
|
||
Symfony\Component\Form\FormTypeInterface: | ||
tags: ['form.type'] | ||
public: true # Mandatory | ||
|
||
Symfony\Component\Security\Core\Authorization\VoterInterface: | ||
tags: ['security.voter'] | ||
|
||
# Register all classes in these directories as services | ||
App\: | ||
resource: '../src/{Command,EventSubscriber,Twig,Form,Voter}' | ||
|
||
App\Controller\: | ||
resource: '../src/Controller' | ||
public: true # Mandatory |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
imports: | ||
- { resource: config_dev.yml } | ||
- { resource: '../dev/config.yml' } | ||
|
||
framework: | ||
test: ~ | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can this be removed now that symfony/symfony#21690 is merged and thus form types can be private?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍