Skip to content

Commit

Permalink
Merge pull request #9 from tangoslee/feature/TENC-136
Browse files Browse the repository at this point in the history
[feature/TENC-136] Refactoring TpConfigTrait
  • Loading branch information
pmkay authored Aug 16, 2021
2 parents 99e44ae + beefa24 commit c51ef73
Show file tree
Hide file tree
Showing 13 changed files with 1,272 additions and 441 deletions.
26 changes: 22 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tendopay/tendopay-sdk-php",
"description": "TendoPay API intergration",
"description": "TendoPay API Integration",
"keywords": [
"api",
"tendopay",
Expand All @@ -13,19 +13,37 @@
"authors": [
{
"name": "Sangmin Lee",
"email": "sangmin@candydigital.co",
"email": "sangmin@tendopay.ph",
"role": "Developer"
}
],
"require": {
"php": ">=7.1"
"php": ">=7.2",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^8"
"phpunit/phpunit": "^8.5",
"mockery/mockery": "^1.3",
"phpstan/phpstan": "^0.12.94",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"TendoPay\\SDK\\": "src/"
}
},
"scripts": {
"analyze-files": [
"git diff --diff-filter=ACM --name-only origin/develop | xargs ./vendor/bin/phpcs",
"git diff --diff-filter=ACM --name-only origin/develop | xargs ./vendor/bin/phpstan analyse"
],
"analyze-all-files": [
"./vendor/bin/phpcs src tests",
"./vendor/bin/phpstan analyse src test"
],
"test": [
"XDEBUG_MODE=coverage phpunit --stop-on-failure"
]
}
}
Loading

0 comments on commit c51ef73

Please sign in to comment.