Skip to content

Commit 4ee56fc

Browse files
committedJul 18, 2016
Improve package
1 parent bb37dc4 commit 4ee56fc

11 files changed

+120
-24
lines changed
 

‎.editorconfig

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
root = true
22

33
[*]
4-
end_of_line = lf
54
charset = utf-8
6-
trim_trailing_whitespace = true
7-
insert_final_newline = true
8-
indent_style = space
5+
end_of_line = lf
96
indent_size = 4
7+
indent_style = space
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true

‎.gitattributes

+15-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
1-
.editorconfig export-ignore
2-
.gitattributes export-ignore
3-
.gitignore export-ignore
4-
CONTRIBUTING export-ignore
1+
.editorconfig export-ignore
2+
.gitattributes export-ignore
3+
/.github/ export-ignore
4+
.gitignore export-ignore
5+
/.php_cs export-ignore
6+
/.scrutinizer.yml export-ignore
7+
/.styleci.yml export-ignore
8+
/.travis.yml export-ignore
9+
/behat.yml.dist export-ignore
10+
/features/ export-ignore
11+
/phpspec.ci.yml export-ignore
12+
/phpspec.yml.dist export-ignore
13+
/phpunit.xml.dist export-ignore
14+
/spec/ export-ignore
15+
/tests/ export-ignore

‎.github/CONTRIBUTING.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Contributing
2+
3+
Please see our [contributing guide](http://docs.php-http.org/en/latest/development/contributing.html).

‎.github/ISSUE_TEMPLATE.md

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
| Q | A
2+
| ------------ | ---
3+
| Bug? | no|yes
4+
| New Feature? | no|yes
5+
| Version | Specific version or SHA of a commit
6+
7+
8+
#### Actual Behavior
9+
10+
What is the actual behavior?
11+
12+
13+
#### Expected Behavior
14+
15+
What is the behavior you expect?
16+
17+
18+
#### Steps to Reproduce
19+
20+
What are the steps to reproduce this bug? Please add code examples,
21+
screenshots or links to GitHub repositories that reproduce the problem.
22+
23+
24+
#### Possible Solutions
25+
26+
If you have already ideas how to solve the issue, add them here.
27+
(remove this section if not needed)

‎.github/PULL_REQUEST_TEMPLATE.md

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
| Q | A
2+
| --------------- | ---
3+
| Bug fix? | no|yes
4+
| New feature? | no|yes
5+
| BC breaks? | no|yes
6+
| Deprecations? | no|yes
7+
| Related tickets | fixes #X, partially #Y, mentioned in #Z
8+
| Documentation | if this is a new feature, link to pull request in https://github.com/php-http/documentation that adds relevant documentation
9+
| License | MIT
10+
11+
12+
#### What's in this PR?
13+
14+
Explain what the changes in this PR do.
15+
16+
17+
#### Why?
18+
19+
Which problem does the PR fix? (remove this section if you linked an issue above)
20+
21+
22+
#### Example Usage
23+
24+
``` php
25+
// If you added new features, show examples of how to use them here
26+
// (remove this section if not a new feature)
27+
28+
$foo = new Foo();
29+
30+
// Now we can do
31+
$foo->doSomething();
32+
```
33+
34+
35+
#### Checklist
36+
37+
- [ ] Updated CHANGELOG.md to describe BC breaks / deprecations | new feature | bugfix
38+
- [ ] Documentation pull request created (if not simply a bugfix)
39+
40+
41+
#### To Do
42+
43+
- [ ] If the PR is not complete but you want to discuss the approach, list what remains to be done here

‎.gitignore

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
.puli/
2-
build/
3-
vendor/
4-
composer.lock
5-
puli.json
1+
/behat.yml
2+
/build/
3+
/composer.lock
4+
/phpspec.yml
5+
/phpunit.xml
6+
/vendor/

‎.styleci.yml

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ finder:
55
- "spec"
66
path:
77
- "src"
8+
- "tests"
89

910
enabled:
1011
- short_array_syntax
12+
13+
disabled:
14+
- phpdoc_annotation_without_dot # This is still buggy: https://github.com/symfony/symfony/pull/19198

‎CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
# Change Log
22

33

4+
## 0.5.0 - 2016-07-18
5+
6+
### Changed
7+
8+
- Renamed to client-integration-tests
9+
- Improved pacakge
10+
11+
412
## 0.4.0 - 2016-03-02
513

614
### Removed

‎CONTRIBUTING

-1
This file was deleted.

‎README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
# HTTP Adapter integration tests
1+
# HTTP Client integration tests
22

3-
[![Latest Version](https://img.shields.io/github/release/php-http/adapter-integration-tests.svg?style=flat-square)](https://github.com/php-http/adapter-integration-tests/releases)
3+
[![Latest Version](https://img.shields.io/github/release/php-http/client-integration-tests.svg?style=flat-square)](https://github.com/php-http/client-integration-tests/releases)
44
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE)
5-
[![Total Downloads](https://img.shields.io/packagist/dt/php-http/adapter-integration-tests.svg?style=flat-square)](https://packagist.org/packages/php-http/adapter-integration-tests)
5+
[![Total Downloads](https://img.shields.io/packagist/dt/php-http/client-integration-tests.svg?style=flat-square)](https://packagist.org/packages/php-http/client-integration-tests)
66

7-
**HTTP Adapter integration tests.**
7+
**HTTP Client integration tests.**
88

99

1010
## Install
1111

1212
Via Composer
1313

1414
``` bash
15-
$ composer require php-http/adapter-integration-tests
15+
$ composer require php-http/client-integration-tests
1616
```
1717

1818

‎composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "php-http/adapter-integration-tests",
3-
"description": "HTTP Adapter integration tests",
2+
"name": "php-http/client-integration-tests",
3+
"description": "HTTP Client integration tests",
44
"license": "MIT",
5-
"keywords": ["http", "integration", "tests"],
5+
"keywords": ["http", "client", "integration", "tests"],
66
"homepage": "http://httplug.io",
77
"authors": [
88
{
@@ -16,7 +16,7 @@
1616
],
1717
"require": {
1818
"php": ">=5.4",
19-
"phpunit/phpunit": "^4.5",
19+
"phpunit/phpunit": "^4.5 || ^5.0",
2020
"php-http/httplug": "^1.0",
2121
"php-http/message": "^1.0",
2222
"guzzlehttp/psr7": "^1.0",
@@ -32,7 +32,7 @@
3232
],
3333
"extra": {
3434
"branch-alias": {
35-
"dev-master": "0.5-dev"
35+
"dev-master": "0.6-dev"
3636
}
3737
}
3838
}

0 commit comments

Comments
 (0)
Please sign in to comment.