Skip to content

Commit

Permalink
Merge pull request #21 from afiqiqmal/guzzle
Browse files Browse the repository at this point in the history
Remove ZTTP
  • Loading branch information
xmhafiz authored Oct 11, 2021
2 parents c2e0f5d + b3c584f commit c1ceb43
Show file tree
Hide file tree
Showing 7 changed files with 1,111 additions and 1,047 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.env
.idea
coverage.xml
vendor
vendor
.phpunit.result.cache
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: php
php:
- '7.2'
- '7.3'
- '7.4'
- '8.0'

before_script:
- composer install
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ It is simple wrapper class written in php to fetch posts from certain Facebook p

Currently I am using [Facebook graph API](https://developers.facebook.com/docs/graph-api) with cool [guzzle](https://github.com/guzzle/guzzle) and [dotenv](https://github.com/vlucas/phpdotenv)

Tested in PHP 7.0 and 7.1
Tested in PHP 7.0, 7.1, 7.4, 8.0

## Requirement
- PHP 7.0+
Expand Down
10 changes: 8 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,22 @@
],
"require": {
"php": ">=7.0",
"kitetail/zttp": "^0.6.0"
"guzzlehttp/guzzle": "^7.3",
"ext-json": "*"
},
"require-dev": {
"vlucas/phpdotenv": "~2.2",
"phpunit/phpunit": "^6.0"
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"Xmhafiz\\FbFeed\\": "src/"
},
"files": ["helper/helpers.php"]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}
Loading

0 comments on commit c1ceb43

Please sign in to comment.