equal
deleted
inserted
replaced
|
1 <?php |
|
2 // Virtualbox dev |
|
3 //require_once '/opt/symfony-1.2.8/lib/autoload/sfCoreAutoload.class.php'; |
|
4 // Gothbook dev |
|
5 putenv("PATH=/opt/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"); |
|
6 |
|
7 |
|
8 |
|
9 define('SF_ENVIRONMENT', 'dev'); |
|
10 require_once '/Users/gautierthibault/SRV/symfony-1.2.8/lib/autoload/sfCoreAutoload.class.php'; |
|
11 sfCoreAutoload::register(); |
|
12 |
|
13 class ProjectConfiguration extends sfProjectConfiguration |
|
14 { |
|
15 public function setup() |
|
16 { |
|
17 $this->enableAllPluginsExcept(array('sfPropelPlugin', 'sfCompat10Plugin')); |
|
18 } |
|
19 } |