Last active
August 29, 2015 14:17
-
-
Save litzinger/71ee9f6603e750caa2d1 to your computer and use it in GitHub Desktop.
Config Tricks to speed up Symfony in dev mode.
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
php: | |
install: '1' | |
version: '56' | |
composer: '1' | |
composer_home: '' | |
modules: | |
php: | |
- cli | |
- intl | |
- mcrypt | |
pear: { } | |
pecl: | |
- pecl_http | |
ini: | |
display_errors: On | |
error_reporting: '-1' | |
session.save_path: /var/lib/php/session | |
# Speed up Symfony load times in dev | |
realpath_cache_size: 4096k | |
realpath_cache_ttl: 7200 | |
timezone: America/Chicago | |
mod_php: 0 |
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
framework: | |
session: | |
# handler_id set to null will use default session handler from php.ini | |
handler_id: ~ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment