Commit Graph
48 Commits
Author SHA1 Message Date
Roland FranssenandGitHub cecbb85b7c Load container config, instead of importing it 2017-05-07 12:23:08 +02:00
Yonel Ceruto b39aa6303e Use single quotes in yaml files 2017-05-03 10:24:53 -04:00
Fabien Potencier 0301b52dcc minor #47 Remove framework.trusted_proxies option (ogizanagi)
This PR was merged into the master branch.

Discussion
----------

Remove framework.trusted_proxies option

As deprecated and "removed" in https://github.com/symfony/symfony/pull/21830 and https://github.com/symfony/symfony/pull/22238 (BC break)

Commits
-------

2507e41 Remove framework.trusted_proxies option
2017-05-03 07:09:27 -07:00
Fabien Potencier 19bb19b1a7 minor #45 Fixed useless calls (HeahDude)
This PR was merged into the master branch.

Discussion
----------

Fixed useless calls

Commits
-------

8e5d62d Fixed useless calls
2017-05-03 06:59:41 -07:00
Sanpi d4832c2174 Enable interpretation of backslash escapes 2017-05-03 13:57:32 +02:00
Maxime SteinhausserandGitHub 2507e41e28 Remove framework.trusted_proxies option
As deprecated in https://github.com/symfony/symfony/pull/21830 and https://github.com/symfony/symfony/pull/22238 (BC break)
2017-05-03 13:00:26 +02:00
Jules Pietri 8e5d62d7b4 Fixed useless calls 2017-05-03 08:30:17 +02:00
Guilhem Niot 52c22bd05d Add comments 2017-05-01 19:29:21 +02:00
Guilhem NiotandGitHub 61854252b6 Store voters in Security 2017-04-30 20:38:31 +02:00
Fabien Potencier c5f400b9a8 switched app.yaml to use autoconfigure 2017-04-20 11:29:28 -06:00
Fabien Potencier 5d1b645b93 moved the orm pack to the 2.4 version instead of master 2017-04-19 18:56:38 -06:00
Fabien Potencier 77e841b4c0 changed the way post-install output is defined 2017-04-14 00:09:33 -07:00
Fabien Potencier 99e56fc71e changed the way we reference Makefiles 2017-04-13 23:56:25 -07:00
Fabien Potencier 2b44c26a66 added symfony/orm-pack 2017-04-13 20:18:10 -07:00
Fabien Potencier cb358d6717 tweaked what's next message 2017-04-13 10:39:04 -07:00
Kévin DunglasandFabien Potencier 6a7468d543 [framework-bundle] use typehints when possible 2017-04-10 19:27:24 -07:00
Fabien Potencier aa9657c8d1 bug #16 Fixed the URL config example of Swiftmailer (javiereguiluz)
This PR was merged into the master branch.

Discussion
----------

Fixed the URL config example of Swiftmailer

Commits
-------

eaff684 Fixed the URL config example of Swiftmailer
2017-04-07 14:06:26 -07:00
Fabien Potencier 0508f63791 feature #15 Added "debug" as an alias of DebugBundle (javiereguiluz)
This PR was merged into the master branch.

Discussion
----------

Added "debug" as an alias of DebugBundle

Otherwise we have the same problem as with "security" and "security-bundle":  `composer req --dev debug` installs `symfony/debug` instead of `symfony/debug-bundle`

Commits
-------

a49448a Added "debug" as an alias of DebugBundle
2017-04-07 14:05:20 -07:00
Javier Eguiluz eaff684fc3 Fixed the URL config example of Swiftmailer 2017-04-07 22:53:18 +02:00
Javier Eguiluz a49448a860 Added "debug" as an alias of DebugBundle 2017-04-07 22:33:54 +02:00
Javier Eguiluz 5da6d51e09 Proposed "loggers" as an alias of Monolog 2017-04-07 22:12:25 +02:00
Fabien Potencier e30857d457 removed unneeded license block 2017-04-07 11:11:11 -07:00
Fabien Potencier 60022e1412 removed usage of getRootDir 2017-04-07 09:58:47 -07:00
Fabien Potencier cafb4bb4b6 replaced kernel.root_dir by kernel.project_dir 2017-04-07 09:57:51 -07:00
Fabien Potencier e14725a388 fixed autowire value according to the new new new way :) 2017-04-06 17:30:41 -07:00
Fabien Potencier bf79019ae4 fixed monolog bundle version 2017-04-06 16:40:08 -07:00
Fabien Potencier c9b9454dc1 added more Swiftmailer URL examples 2017-04-06 16:36:59 -07:00
Fabien Potencier 20ce50f786 fixed version for SwiftmailerBundle 2017-04-06 16:16:54 -07:00
Fabien Potencier 2a7a22ac69 switched to use URLs instead of individual env vars for Doctrine and Swiftmailer 2017-04-06 16:15:04 -07:00
Fabien Potencier b68f207c01 feature #9 [Proposal] Added "security" alias for the SecurityBundle (javiereguiluz)
This PR was merged into the master branch.

Discussion
----------

[Proposal] Added "security" alias for the SecurityBundle

The "security" alias installed the core Security component for me:

```
$ composer req security

Using version ^3.3@dev for symfony/security
  - Removing symfony/security-core (dev-master 2cb0385)
  - Installing symfony/inflector (dev-master 3b19c08)
  - Installing symfony/property-access (dev-master 65b1197)
  - Removing symfony/security-csrf (dev-master 46ad802)
  - Installing symfony/security (dev-master a382b7c)
```

So I needed to execute this too:

```
$ composer req security-bundle

Using version ^3.3@dev for symfony/security-bundle
  - Installing symfony/security-bundle (dev-master acbf390)
```

... but given that "Security" is one of those components which are hard to use stand-alone outside the Symfony Framework, maybe most people expect "security" to install the SecurityBundle?

Commits
-------

ab2124d Added "security" alias for the SecurityBundle
2017-04-06 15:52:19 -07:00
Javier Eguiluz ab2124d01d Added "security" alias for the SecurityBundle 2017-04-06 12:11:44 +02:00
Javier Eguiluz 948be2c06f Fixed the KERNEL_DIR property in symfony/phpunit-bridge 2017-04-06 11:52:05 +02:00
Javier Eguiluz f5b5aa636f Typo in the default symfony/etc/packages/framework.yaml file 2017-04-05 18:05:39 +02:00
Fabien Potencier 227bd9bfab added an alias 2017-04-04 20:56:20 -07:00
Fabien Potencier 09deff16bd added a note about required deps for annotations to work 2017-04-04 20:56:19 -07:00
Fabien Potencier 3e486bd97f fixed wrong version 2017-04-04 19:17:12 -07:00
Javier Eguiluz 054c35e69e Use https when linking to symfony.com 2017-04-04 21:28:28 +02:00
Fabien Potencier 16283e8e14 minor #1 Use "DefaultController" instead of "SomeController" as default (javiereguiluz)
This PR was merged into the master branch.

Discussion
----------

Use "DefaultController" instead of "SomeController" as default

In case https://github.com/fabpot/flex/issues/27 is accepted, this should be the solution.

Commits
-------

e795fa0 Use "DefaultController" instead of "SomeController" as default
2017-04-04 12:11:13 -07:00
Fabien Potencier 6899aa8192 minor #3 Improve the readability of the Makefile tasks (javiereguiluz)
This PR was merged into the master branch.

Discussion
----------

Improve the readability of the Makefile tasks

In case https://github.com/fabpot/flex/issues/29 is accepted, this should be the solution.

Commits
-------

6785a02 Improve the readability of the Makefile tasks
2017-04-04 12:09:42 -07:00
Fabien Potencier 8fd72f8a86 added version directories 2017-04-04 11:57:32 -07:00
Javier Eguiluz 6785a02463 Improve the readability of the Makefile tasks 2017-04-04 20:52:22 +02:00
Javier Eguiluz e795fa039d Use "DefaultController" instead of "SomeController" as default 2017-04-04 20:43:04 +02:00
Fabien Potencier 0b557bab57 moved HTTP to HTTPs for symfony.com links 2017-04-03 15:27:01 -07:00
Fabien Potencier fd24cade7f switch autowire to by_id by default 2017-03-25 13:47:51 -07:00
Fabien Potencier 8dbd2ae2fa fixed typo 2017-03-25 09:34:50 -07:00
Fabien Potencier 356fe808c6 added a new component 2017-03-24 19:47:24 -07:00
Fabien Potencier 6e554b0445 moved aliases directly into the manifest files 2017-03-24 16:11:46 -07:00
Fabien Potencier afb8b0bc4b moved recipes to the root 2017-03-24 16:01:14 -07:00