Skip to content

Commit ada142c

Browse files
authored
Merge pull request #28 from JeremyDunn/tests
Tests
2 parents a0fc212 + 1feee78 commit ada142c

File tree

104 files changed

+2455
-597
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+2455
-597
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,5 @@ composer.phar
5555
nbproject
5656
examples/credentials.php
5757
doc/
58+
tests/logs
5859

.travis.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
language: php
2+
3+
php:
4+
- 5.6
5+
- 7.0
6+
- 7.1
7+
8+
install:
9+
- composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable --prefer-lowest
10+
11+
script: vendor/bin/phpunit
12+
13+
notifications:
14+
email: false

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# PHP FedEx API Wrapper
22

3+
[![Build Status](https://travis-ci.org/JeremyDunn/php-fedex-api-wrapper.svg?branch=master)](https://travis-ci.org/JeremyDunn/php-fedex-api-wrapper)
4+
35
This library provides a fluid interface for constructing requests to the FedEx web service API.
46

57
## General Information

composer.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,19 @@
1313
}
1414
],
1515
"require": {
16-
"php": ">=5.3.0"
16+
"php": ">=5.4.0"
1717
},
1818
"require-dev": {
1919
"symfony/console": "2.*",
20-
"apigen/apigen": "^4.1"
20+
"apigen/apigen": "^4.1",
21+
"phpunit/phpunit": "^5.7",
22+
"fzaninotto/faker": "^1.6"
2123
},
2224
"autoload": {
2325
"psr-4": {
2426
"FedEx\\": "src/FedEx/",
25-
"FedEx\\Utility\\": "util/"
27+
"FedEx\\Utility\\": "util/",
28+
"FedEx\\Tests\\": "tests/FedEx/Tests"
2629
}
2730
},
2831
"scripts": {

0 commit comments

Comments
 (0)