-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
131 changed files
with
11,477 additions
and
109 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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,10 @@ | ||
language: php | ||
|
||
php: | ||
- 5.3.3 | ||
- 5.3 | ||
- 5.4 | ||
|
||
before_script: composer install -n | ||
|
||
script: phpunit -c app |
This file contains 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,19 @@ | ||
Copyright (c) 2004-2013 Fabien Potencier | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is furnished | ||
to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. |
This file contains 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,30 @@ | ||
UPGRADE FROM 2.1 to 2.2 | ||
======================= | ||
|
||
* The [`web/.htaccess`](https://github.com/symfony/symfony-standard/blob/2.2/web/.htaccess) | ||
file has been enhanced substantially to prevent duplicate content with and | ||
without `/app.php` in the URI. It also improves functionality when using | ||
Apache aliases or when mod_rewrite is not available. So you might want to | ||
update your `.htaccess` file as well. | ||
|
||
* The ``_internal`` route is not used any more. It should then be removed | ||
from both your routing and security configurations. A ``fragments`` key has | ||
been added to the framework configuration and must be specified when ESI or | ||
Hinclude are in use. No security configuration is required for this path as | ||
by default ESI access is only permitted for trusted hosts and Hinclude | ||
access uses an URL signing mechanism. | ||
|
||
``` | ||
framework: | ||
# ... | ||
fragments: { path: /_proxy } | ||
``` | ||
|
||
Functional Tests | ||
---------------- | ||
|
||
* The profiler has been disabled by default in the test environment. You can | ||
enable it again by modifying the ``config_test.yml`` configuration file or | ||
even better, you can just enable it for the very next request by calling | ||
``$client->enableProfiler()`` when you need the profiler in a test (that | ||
speeds up functional tests quite a bit). |
This file contains 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,52 @@ | ||
UPGRADE FROM 2.2 to 2.3 | ||
======================= | ||
|
||
When upgrading Symfony from 2.2 to 2.3, you need to do the following changes | ||
to the code that came from the Standard Edition: | ||
|
||
* The debugging tools are not enabled by default anymore and should be added | ||
to the | ||
[`web/app_dev.php`](https://github.com/symfony/symfony-standard/blob/2.3/web/app_dev.php) | ||
front controller manually, just after including the bootstrap cache: | ||
|
||
use Symfony\Component\Debug\Debug; | ||
|
||
Debug::enable(); | ||
|
||
You also need to enable debugging in the | ||
[`app/console`](https://github.com/symfony/symfony-standard/blob/2.3/app/console) | ||
script, after the `$debug` variable is defined: | ||
|
||
use Symfony\Component\Debug\Debug; | ||
|
||
if ($debug) { | ||
Debug::enable(); | ||
} | ||
|
||
* The `parameters.yml` file can now be managed by the | ||
`incenteev/composer-parameter-handler` bundle that comes with the 2.3 | ||
Standard Edition: | ||
|
||
* add `"incenteev/composer-parameter-handler": "~2.0"` to your | ||
`composer.json` file; | ||
|
||
* add `/app/config/parameters.yml` to your `.gitignore` file; | ||
|
||
* create a | ||
[`app/config/parameters.yml.dist`](https://github.com/symfony/symfony-standard/blob/2.3/app/config/parameters.yml.dist) | ||
file with sensible values for all your parameters. | ||
|
||
* It is highly recommended that you switch the minimum stability to `stable` | ||
in your `composer.json` file. | ||
|
||
* If you are using Apache, have a look at the new | ||
[`.htaccess`](https://github.com/symfony/symfony-standard/blob/2.3/web/.htaccess) | ||
configuration and change yours accordingly. | ||
|
||
* In the | ||
[`app/autoload.php`](https://github.com/symfony/symfony-standard/blob/2.3/app/autoload.php) | ||
file, the section about `intl` should be removed as it is not needed anymore. | ||
|
||
You can also have a look at the | ||
[diff](https://github.com/symfony/symfony-standard/compare/v2.2.0%E2%80%A62.3) | ||
between the 2.2 version of the Standard Edition and the 2.3 version. |
Oops, something went wrong.