1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 04:24:42 +01:00

Fix travis run the second

This commit is contained in:
Bob Weinand 2016-08-15 15:24:05 +02:00
parent c503bbf46d
commit 4e52e68f3a
3 changed files with 17 additions and 2 deletions

View File

@ -1 +0,0 @@
src_dir: lib

15
.php_cs Normal file
View File

@ -0,0 +1,15 @@
<?php
return Symfony\CS\Config\Config::create()
->level(Symfony\CS\FixerInterface::NONE_LEVEL)
->fixers([
"psr2",
"-braces",
"-psr0",
])
->finder(
Symfony\CS\Finder\DefaultFinder::create()
->in(__DIR__ . "/lib")
->in(__DIR__ . "/test")
)
;

View File

@ -14,7 +14,8 @@
"async-interop/event-loop": "^0.2"
},
"require-dev": {
"async-interop/event-loop-test": "dev-master"
"async-interop/event-loop-test": "dev-master",
"friendsofphp/php-cs-fixer": "~1.9"
},
"provide": {
"async-interop/event-loop-implementation": "^0.2"