Merge pull request #4 from pamil/master
[Maintenance] Fix CS and set up CI tests for more PHP versions
This commit is contained in:
10
.travis.yml
10
.travis.yml
@@ -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:
|
||||||
|
|||||||
@@ -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
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -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
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -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
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -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
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user