-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactored code ( psr7, psr17 support)
- Loading branch information
Artem Stepin
committed
Jun 22, 2021
1 parent
7448a1b
commit dc70b65
Showing
17 changed files
with
2,298 additions
and
842 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "cloudplaydev/confluence-php-client", | ||
"description": "Confluence API PHP Client", | ||
"version": "0.0.2", | ||
"version": "0.1.0", | ||
"license": "MIT", | ||
"keywords": [ | ||
"Atlassian", | ||
|
@@ -11,10 +11,6 @@ | |
"Client" | ||
], | ||
"authors": [ | ||
{ | ||
"name": "Yuxiao (Shawn) Tan", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Artem Stepin", | ||
"email": "[email protected]" | ||
|
@@ -24,19 +20,36 @@ | |
"autoload": { | ||
"psr-4": { | ||
"CloudPlayDev\\ConfluenceClient\\": [ | ||
"src/", | ||
"src/" | ||
] | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"CloudPlayDev\\Tests\\ConfluenceClient\\": [ | ||
"tests/" | ||
] | ||
} | ||
}, | ||
"require": { | ||
"php": "^7.4", | ||
"ext-curl": "*", | ||
"ext-json": "*" | ||
"ext-json": "*", | ||
"psr/http-message": "^1.0", | ||
"psr/http-client": "^1.0", | ||
"psr/http-client-implementation": "^1.0", | ||
"psr/http-factory": "^1.0", | ||
"php-http/httplug": "^2.0", | ||
"php-http/discovery": "^1.0", | ||
"php-http/promise": "^1.0", | ||
"php-http/client-common": "^2.0" | ||
}, | ||
"require-dev": { | ||
"roave/security-advisories": "dev-latest", | ||
"phpunit/phpunit": "^9.5.5", | ||
"phpstan/phpstan": "^0.12.90", | ||
"vimeo/psalm": "^4.8" | ||
"vimeo/psalm": "^4.8", | ||
"guzzlehttp/guzzle": "^7.2", | ||
"http-interop/http-factory-guzzle": "^1.0" | ||
} | ||
} |
Oops, something went wrong.