Skip to content

Commit 802d7d5

Browse files
authored
Merge pull request #28 from boboudreau/feature-media-upload
Adding an "upload" method to the Media endpoint
2 parents 504fc29 + a9ef530 commit 802d7d5

File tree

7 files changed

+800
-196
lines changed

7 files changed

+800
-196
lines changed

.travis.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
language: php
22

33
php:
4-
- 5.6
5-
- 7
4+
- 7.0
5+
- 7.1
6+
- 7.2
7+
- 7.3
8+
- 7.4
69

710
before_script:
811
- composer install --prefer-dist --dev

composer.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
{
22
"name": "vnn/wordpress-rest-api-client",
3+
"config": {
4+
"platform": {
5+
"php": "7.0.33"
6+
}
7+
},
38
"autoload": {
49
"psr-4": {
510
"Vnn\\WpApiClient\\": "src/"
611
}
712
},
813
"require": {
9-
"php": ">= 5.6, <= 8.0",
14+
"php": "^7.0",
1015
"psr/http-message": "^1.0"
1116
},
1217
"require-dev": {

0 commit comments

Comments
 (0)