Merge pull request #4 from pamil/master

[Maintenance] Fix CS and set up CI tests for more PHP versions
This commit is contained in:
Kamil Kokot
2016-10-25 14:40:21 +02:00
committed by GitHub
5 changed files with 7 additions and 15 deletions

View File

@@ -1,6 +1,7 @@
language: php language: php
php: php:
- 7.1
- 7.0 - 7.0
- 5.6 - 5.6
@@ -10,9 +11,12 @@ env:
matrix: matrix:
include: include:
- - php: 5.6
php: 5.6
env: COMPOSER_OPTIONS="--prefer-lowest" env: COMPOSER_OPTIONS="--prefer-lowest"
- php: nightly
allow_failures:
- php: nightly
fast_finish: true
cache: cache:
directories: directories:

View File

@@ -17,9 +17,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
use Symfony\Component\DependencyInjection\Definition; use Symfony\Component\DependencyInjection\Definition;
use Symfony\Component\DependencyInjection\Reference; use Symfony\Component\DependencyInjection\Reference;
/**
* @author Kamil Kokot <kamil@kokot.me>
*/
final class SymfonyDriverFactory implements DriverFactory final class SymfonyDriverFactory implements DriverFactory
{ {
/** /**

View File

@@ -14,9 +14,6 @@ namespace FriendsOfBehat\SymfonyExtension\Driver;
use Behat\Mink\Driver\BrowserKitDriver; use Behat\Mink\Driver\BrowserKitDriver;
use Symfony\Component\HttpKernel\KernelInterface; use Symfony\Component\HttpKernel\KernelInterface;
/**
* @author Kamil Kokot <kamil@kokot.me>
*/
final class SymfonyDriver extends BrowserKitDriver final class SymfonyDriver extends BrowserKitDriver
{ {
/** /**

View File

@@ -16,9 +16,6 @@ use Behat\Behat\EventDispatcher\Event\ScenarioTested;
use Symfony\Component\EventDispatcher\EventSubscriberInterface; use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\HttpKernel\KernelInterface; use Symfony\Component\HttpKernel\KernelInterface;
/**
* @author Kamil Kokot <kamil@kokot.me>
*/
final class KernelRebooter implements EventSubscriberInterface final class KernelRebooter implements EventSubscriberInterface
{ {
/** /**

View File

@@ -23,9 +23,6 @@ use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Definition; use Symfony\Component\DependencyInjection\Definition;
use Symfony\Component\DependencyInjection\Reference; use Symfony\Component\DependencyInjection\Reference;
/**
* @author Kamil Kokot <kamil@kokot.me>
*/
final class SymfonyExtension implements Extension final class SymfonyExtension implements Extension
{ {
/** /**