Skip to content

Commit 44503a0

Browse files
authored
Import (#1)
1 parent 2ed34ee commit 44503a0

9 files changed

+1927
-0
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# IDE meta
2+
/nbproject
3+
/.idea
4+
/build
5+
6+
# Composer
7+
/vendor

.travis.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
sudo: false
2+
language: php
3+
php:
4+
- 5.6
5+
- 7
6+
- 7.1
7+
- 7.2
8+
9+
install:
10+
- composer install --prefer-dist
11+
12+
script:
13+
- composer cs
14+
- composer test
15+
16+
cache:
17+
directories:
18+
- $HOME/.composer/cache/files

composer.json

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"name": "webignition/guzzle-http-authentication-middleware",
3+
"description": "Http authentication middleware for Guzzle6",
4+
"keywords": ["sitemap"],
5+
"homepage": "https://github.com/webignition/guzzle-http-authentication-middleware",
6+
"type": "library",
7+
"license": "MIT",
8+
"authors": [
9+
{
10+
"name": "Jon Cram",
11+
"email": "jon@webignition.net"
12+
}
13+
],
14+
"autoload": {
15+
"psr-4": {
16+
"webignition\\Guzzle\\Middleware\\HttpAuthentication\\": "src/"
17+
}
18+
},
19+
"autoload-dev": {
20+
"psr-4": {
21+
"webignition\\Guzzle\\Middleware\\HttpAuthentication\\Tests\\": "tests/"
22+
}
23+
},
24+
"scripts": {
25+
"test": "./vendor/bin/phpunit --colors=always",
26+
"cs": "./vendor/bin/phpcs src tests --colors --standard=PSR2",
27+
"ci": [
28+
"@composer cs",
29+
"@composer test"
30+
]
31+
},
32+
"require": {
33+
"php": ">=5.6.0",
34+
"psr/http-message": "~1.0"
35+
},
36+
"require-dev": {
37+
"phpunit/phpunit": "^5",
38+
"mockery/mockery": "~1",
39+
"squizlabs/php_codesniffer": "3.*"
40+
},
41+
"minimum-stability":"stable"
42+
}

0 commit comments

Comments
 (0)