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
| <Directory /> | |
| AllowOverride All | |
| Require all granted | |
| </Directory> |
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
| <Directory /> | |
| AllowOverride none | |
| Require all denied | |
| </Directory> |
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
| DocumentRoot "/Users/YOU/Workspace/" | |
| NameVirtualHost *:80 | |
| <Directory "/Users/YOU/Workspace/"> | |
| Options Indexes MultiViews FollowSymLinks Includes | |
| AllowOverride All | |
| Order allow,deny | |
| Allow from all | |
| </Directory> | |
| <VirtualHost *:80> | |
| UseCanonicalName Off |
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
| parameters: | |
| victoire_core.watch_view_cache: true | |
| imports: | |
| - { resource: @VictoireCoreBundle/Resources/config/config.yml } | |
| - { resource: @VictoireTwigBundle/Resources/config/config.yml } | |
| monolog: | |
| handlers: | |
| main: |
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
| fos_user_security: | |
| resource: "@FOSUserBundle/Resources/config/routing/security.xml" | |
| fos_js_routing: | |
| resource: "@FOSJsRoutingBundle/Resources/config/routing/routing.xml" | |
| VictoireCoreBundle: | |
| resource: . | |
| type: victoire_i18n |
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 | |
| use Symfony\Component\HttpKernel\Kernel; | |
| use Symfony\Component\Config\Loader\LoaderInterface; | |
| class AppKernel extends Kernel | |
| { | |
| /** | |
| * @return array | |
| */ |
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
| #!/usr/bin/env php | |
| <?php | |
| // if you don't want to setup permissions the proper way, just uncomment the following PHP line | |
| // read http://symfony.com/doc/current/book/installation.html#configuration-and-setup for more information | |
| //umask(0000); | |
| set_time_limit(0); | |
| require_once __DIR__.'/../../bootstrap.php'; |
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 | |
| use Symfony\Component\HttpFoundation\Request; | |
| $loader = require_once __DIR__.'/../../bootstrap.php'; | |
| require_once __DIR__.'/../app/AppKernel.php'; | |
| $kernel = new AppKernel('test', true); | |
| $kernel->loadClassCache(); |
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
| language: php | |
| php: | |
| - 5.5 | |
| - 5.6 | |
| before_script: | |
| - npm install less | |
| - composer install --dev --prefer-dist | |
| # Prepare database |
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
| default: | |
| context: | |
| class: Victoire\Tests\Features\Context\FeatureContext | |
| parameters: | |
| wd_host: 'http://localhost:4444/wd/hub' | |
| capabilities: { "browser": "firefox", "version": "33"} | |
| extensions: | |
| Behat\Symfony2Extension\Extension: | |
| mink_driver: true | |
| kernel: |