This repository was archived by the owner on Jan 6, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 13 files changed +77
-121
lines changed Expand file tree Collapse file tree 13 files changed +77
-121
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,3 @@ trim_trailing_whitespace = true
7
7
insert_final_newline = true
8
8
indent_style = space
9
9
indent_size = 4
10
-
11
- [* .yml* ]
12
- indent_style = space
13
- indent_size = 2
Original file line number Diff line number Diff line change
1
+ spec / export-ignore
1
2
tests / export-ignore
2
3
.editorconfig export-ignore
3
4
.gitattributes export-ignore
4
5
.gitignore export-ignore
6
+ .php_cs export-ignore
5
7
.scrutinizer.yml export-ignore
8
+ .styleci.yml export-ignore
6
9
.travis.yml export-ignore
7
- CONTRIBUTING.md export-ignore
10
+ CONTRIBUTING export-ignore
11
+ phpspec.yml.ci export-ignore
12
+ phpspec.yml.dist export-ignore
8
13
phpunit.xml.dist export-ignore
Original file line number Diff line number Diff line change
1
+ .puli /
1
2
build /
2
3
vendor /
3
4
composer.lock
5
+ phpspec.yml
4
6
phpunit.xml
5
- /.puli
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ /*
4
+ * In order to make it work, fabpot/php-cs-fixer and sllh/php-cs-fixer-styleci-bridge must be installed globally
5
+ * with composer.
6
+ *
7
+ * @link https://github.com/Soullivaneuh/php-cs-fixer-styleci-bridge
8
+ * @link https://github.com/FriendsOfPHP/PHP-CS-Fixer
9
+ */
10
+
11
+ use SLLH \StyleCIBridge \ConfigBridge ;
12
+
13
+ return ConfigBridge::create ();
Original file line number Diff line number Diff line change 1
1
filter :
2
- paths : [src/*]
2
+ paths : [src/*]
3
3
checks :
4
- php :
5
- code_rating : true
6
- duplication : true
4
+ php :
5
+ code_rating : true
6
+ duplication : true
7
7
tools :
8
- external_code_coverage : true
9
- php_code_sniffer :
10
- config :
11
- standard : " PSR2"
8
+ external_code_coverage : true
Original file line number Diff line number Diff line change
1
+ preset : symfony
2
+
3
+ finder :
4
+ exclude :
5
+ - " spec"
6
+ path :
7
+ - " src"
8
+
9
+ enabled :
10
+ - short_array_syntax
Original file line number Diff line number Diff line change @@ -3,39 +3,42 @@ language: php
3
3
sudo : false
4
4
5
5
cache :
6
- directories :
7
- - $HOME/.composer/cache
6
+ directories :
7
+ - $HOME/.composer/cache
8
8
9
9
php :
10
- - 5.4
11
- - 5.5
12
- - 5.6
13
- - 7.0
14
- - hhvm
10
+ - 5.4
11
+ - 5.5
12
+ - 5.6
13
+ - 7.0
14
+ - hhvm
15
15
16
16
env :
17
- global :
18
- - TEST_COMMAND="composer test"
17
+ global :
18
+ - TEST_COMMAND="composer test"
19
+
20
+ branches :
21
+ except :
22
+ - /^analysis-.*$/
19
23
20
24
matrix :
21
- allow_failures :
22
- - php : hhvm
23
- include :
24
- - php : 5.4
25
- env : COMPOSER_FLAGS="--prefer-stable --prefer-lowest" COVERAGE=true TEST_COMMAND="composer test-ci"
25
+ fast_finish : true
26
+ include :
27
+ - php : 5.4
28
+ env : COMPOSER_FLAGS="--prefer-stable --prefer-lowest" COVERAGE=true TEST_COMMAND="composer test-ci"
26
29
27
30
before_install :
28
- - travis_retry composer self-update
31
+ - travis_retry composer self-update
29
32
30
33
install :
31
- - travis_retry composer update ${COMPOSER_FLAGS} --prefer-source --no-interaction
34
+ - travis_retry composer update ${COMPOSER_FLAGS} --prefer-source --no-interaction
32
35
33
36
before_script :
34
- - vendor/bin/http_test_server > /dev/null 2>&1 &
37
+ - vendor/bin/http_test_server > /dev/null 2>&1 &
35
38
36
39
script :
37
- - $TEST_COMMAND
40
+ - $TEST_COMMAND
38
41
39
42
after_script :
40
- - if [[ "$COVERAGE" = true ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi
41
- - if [[ "$COVERAGE" = true ]]; then php ocular.phar code-coverage:upload --format=php-clover build/coverage.xml; fi
43
+ - if [[ "$COVERAGE" = true ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi
44
+ - if [[ "$COVERAGE" = true ]]; then php ocular.phar code-coverage:upload --format=php-clover build/coverage.xml; fi
Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
3
4
+ ## UNRELEASED
5
+
6
+ ### Changed
7
+
8
+ - Updated package files
9
+ - Updated to latest HTTPlug
10
+
11
+
4
12
## 0.1.0 - 2015-06-12
5
13
6
14
### Added
Original file line number Diff line number Diff line change
1
+ Please see http://docs.php-http.org/en/latest/development/contributing.html
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments