Skip to content

Commit

Permalink
Remove ZTTP
Browse files Browse the repository at this point in the history
Change to Guzzle
Fix Test Unit
  • Loading branch information
mywira committed Oct 11, 2021
1 parent c2e0f5d commit 1f81557
Show file tree
Hide file tree
Showing 6 changed files with 1,110 additions and 1,046 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
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 1f81557

Please sign in to comment.