-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
johnturnham
committed
Feb 22, 2024
1 parent
b5d3019
commit d420a74
Showing
776 changed files
with
149,222 additions
and
30,212 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ composer.phar | |
|
||
# php-cs-fixer cache | ||
.php_cs.cache | ||
.php-cs-fixer.cache | ||
|
||
# PHPUnit cache | ||
.phpunit.result.cache |
Large diffs are not rendered by default.
Oops, something went wrong.
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 +1 @@ | ||
5.4.0 | ||
7.3.0 |
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php | ||
|
||
/** | ||
* @generated | ||
* @link https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/HEAD/doc/config.rst | ||
*/ | ||
$finder = PhpCsFixer\Finder::create() | ||
->in(__DIR__) | ||
->exclude('vendor') | ||
->exclude('test') | ||
->exclude('tests') | ||
; | ||
|
||
$config = new PhpCsFixer\Config(); | ||
return $config->setRules([ | ||
'@PSR12' => true, | ||
'phpdoc_order' => true, | ||
'array_syntax' => [ 'syntax' => 'short' ], | ||
'strict_comparison' => true, | ||
'strict_param' => true, | ||
'no_trailing_whitespace' => false, | ||
'no_trailing_whitespace_in_comment' => false, | ||
'braces' => false, | ||
'single_blank_line_at_eof' => false, | ||
'blank_line_after_namespace' => false, | ||
'no_leading_import_slash' => false, | ||
]) | ||
->setFinder($finder) | ||
; |
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 +1 @@ | ||
{"description": "OpenAPI compliant library to access resources on the Wallet Platform", "keywords": ["openapitools", "php", "sdk", "wallet-sdk", "wallet-api"], "homepage": "https://github.com/WalletInc/sdk-php", "license": "unlicense", "authors": [{"name": "John Turnham", "email": "john.turnham@wallet.inc", "role": "CTO"}, {"name": "Pratheek Adidela", "email": "pratheek.adidela@wallet.inc", "role": "Developer"}], "require": {"php": "^7.3 || ^8.0", "ext-curl": "*", "ext-json": "*", "ext-mbstring": "*", "guzzlehttp/guzzle": "^7.3", "guzzlehttp/psr7": "^1.7 || ^2.0"}, "require-dev": {"phpunit/phpunit": "^8.0 || ^9.0", "friendsofphp/php-cs-fixer": "^2.12"}, "autoload": {"psr-4": {"OpenAPI\\Client\\": "lib/"}}, "autoload-dev": {"psr-4": {"OpenAPI\\Client\\Test\\": "test/"}}, "name": "wallet/wallet", "type": "wallet-api-plugin", "prefer-stable": true, "minimum-stability": "dev", "config": {"platform": {"php": "7.4.24"}}, "version": "2.1.600"} | ||
{"description": "OpenAPI compliant library to access resources on the Wallet Platform", "keywords": ["openapitools", "php", "sdk", "wallet-sdk", "wallet-api"], "homepage": "https://github.com/WalletInc/sdk-php", "license": "unlicense", "authors": [{"name": "John Turnham", "email": "john.turnham@wallet.inc", "role": "CTO"}, {"name": "Pratheek Adidela", "email": "pratheek.adidela@wallet.inc", "role": "Developer"}], "require": {"php": "^7.4 || ^8.0", "ext-curl": "*", "ext-json": "*", "ext-mbstring": "*", "guzzlehttp/guzzle": "^7.3", "guzzlehttp/psr7": "^1.7 || ^2.0"}, "require-dev": {"phpunit/phpunit": "^8.0 || ^9.0", "friendsofphp/php-cs-fixer": "^3.5"}, "autoload": {"psr-4": {"OpenAPI\\Client\\": "lib/"}}, "autoload-dev": {"psr-4": {"OpenAPI\\Client\\Test\\": "test/"}}, "name": "wallet/wallet", "type": "wallet-api-plugin", "prefer-stable": true, "minimum-stability": "dev", "config": {"platform": {"php": "7.4.24"}}, "version": "2.1.600"} |
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
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
Oops, something went wrong.