Skip to content

Commit 799f3bf

Browse files
committed
Merge branch 'master' into feature/promise
2 parents 47c739b + 2607889 commit 799f3bf

File tree

4 files changed

+19
-4
lines changed

4 files changed

+19
-4
lines changed

.gitattributes

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
tests/ export-ignore
2-
*.http eol=crlf
1+
# Common (from boilerplate)
32
.editorconfig export-ignore
43
.gitattributes export-ignore
54
.gitignore export-ignore
65
.scrutinizer.yml export-ignore
76
.travis.yml export-ignore
87
CONDUCT.md export-ignore
98
CONTRIBUTING.md export-ignore
9+
10+
# Project specific
11+
*.http eol=crlf
1012
phpunit.xml.dist export-ignore
11-
VERSION export-ignore
13+
tests/ export-ignore

.php_cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
3+
return Symfony\CS\Config\Config::create()
4+
->level(Symfony\CS\FixerInterface::PSR2_LEVEL)
5+
->fixers([])
6+
->finder(
7+
Symfony\CS\Finder\DefaultFinder::create()->in(__DIR__ . '/src')
8+
)
9+
;

.styleci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
preset: psr2
2+
finder:
3+
path:
4+
- "src"

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
},
1919
"require-dev": {
2020
"guzzlehttp/psr7": "^1.0",
21-
"php-http/adapter-integration-tests": "dev-master",
21+
"php-http/adapter-integration-tests": "dev-master#7c681907547e24b26f352bc48444527c28bfc524",
2222
"php-http/discovery": "^0.3",
2323
"phpunit/phpunit": "^4.8@stable",
2424
"zendframework/zend-diactoros": "^1.0"

0 commit comments

Comments
 (0)