Repository Config
filter:
excluded_paths:
- 'laravel/app/Console/Kernel.php'
- 'tests/*'
- 'laravel/database/*'
- 'laravel/routes/*'
- 'symfony/app/*'
- 'symfony/tests/_support/*'
- 'AppKernel.php'
- 'autoload.php'
- 'laravel/bootstrap/*'
- 'laravel/config/*'
- 'symfony/var/*'
- 'bin/*'
- 'features/*'
- 'reports/*'
- 'spec/*'
- '*.min.js'
checks:
php: true
coding_style:
php: { }
build:
dependencies:
override:
- "cd symfony && composer install --no-interaction && cd .. && cd laravel && composer install --no-interaction && cd .."
environment:
apache2:
modules: ['rewrite']
sites:
symfony_app:
web_root: 'symfony/web/'
host: 'sftodo.dev'
rules:
- 'RewriteCond %{HTTP_REFERER} !^$'
- 'RewriteCond %{HTTP_REFERER} !^http://(www.)?example.com/ [NC]'
- 'RewriteRule .(gif|jpg|png)$ - [F]'
hosts:
sftodo.dev: '127.0.0.1'
selenium: true
tests:
override:
- 'symfony/bin/phpspec run'
- 'cd symfony && bin/codecept run && cd ..'