-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update composer configuration for beta stability and testing scripts
- Change minimum stability from "stable" to "beta" to allow installation of beta packages. - Add PHPUnit test scripts to facilitate running tests: - `test` to run all tests - `test-unit` to run only unit tests - `test-feature` to run feature tests - Include a link to the package documentation in the "extra" section of composer.json. - Update PHPUnit reference in composer.lock for the latest commit. Changes: - composer.json: - minimum-stability: "stable" to "beta" - Added scripts section with test commands - Added extra section with readme link - composer.lock: - Updated content-hash - Updated PHPUnit package reference and timestamp
- Loading branch information
1 parent
e741157
commit 0eb5078
Showing
54 changed files
with
91 additions
and
84 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 |
---|---|---|
|
@@ -19,13 +19,21 @@ | |
"email": "[email protected]" | ||
} | ||
], | ||
"minimum-stability": "stable", | ||
"minimum-stability": "beta", | ||
"require": { | ||
"php": ">=8.3", | ||
"ext-curl": "*", | ||
"ext-http": "*" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^11.0@dev" | ||
}, | ||
"scripts": { | ||
"test": "vendor/bin/phpunit", | ||
"test-unit": "vendor/bin/phpunit --testsuite 'Unit'", | ||
"test-feature": "vendor/bin/phpunit --testsuite Feature" | ||
}, | ||
"extra": { | ||
"readme": "https://shahmal1yev.github.io/packages/EasyPay-PHP.html" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
...actories/BatchCloseCommandFactoryTest.php → ...actories/BatchCloseCommandFactoryTest.php
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
4 changes: 2 additions & 2 deletions
4
...tories/CancellationCommandFactoryTest.php → ...tories/CancellationCommandFactoryTest.php
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
4 changes: 2 additions & 2 deletions
4
...ories/DirectPaymentCommandFactoryTest.php → ...ories/DirectPaymentCommandFactoryTest.php
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
4 changes: 2 additions & 2 deletions
4
...ries/InitializationCommandFactoryTest.php → ...ries/InitializationCommandFactoryTest.php
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
4 changes: 2 additions & 2 deletions
4
...es/PaymentClearanceCommandFactoryTest.php → ...es/PaymentClearanceCommandFactoryTest.php
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
4 changes: 2 additions & 2 deletions
4
...ds/Factories/RefundCommandFactoryTest.php → ...ds/Factories/RefundCommandFactoryTest.php
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
4 changes: 2 additions & 2 deletions
4
...ds/Factories/StatusCommandFactoryTest.php → ...ds/Factories/StatusCommandFactoryTest.php
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
6 changes: 3 additions & 3 deletions
6
.../BatchCloseCommandResponseHandlerTest.php → .../BatchCloseCommandResponseHandlerTest.php
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
6 changes: 3 additions & 3 deletions
6
...ancellationCommandResponseHandlerTest.php → ...ancellationCommandResponseHandlerTest.php
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
6 changes: 3 additions & 3 deletions
6
...rectPaymentCommandResponseHandlerTest.php → ...rectPaymentCommandResponseHandlerTest.php
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
6 changes: 3 additions & 3 deletions
6
...tializationCommandResponseHandlerTest.php → ...tializationCommandResponseHandlerTest.php
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
6 changes: 3 additions & 3 deletions
6
...ntClearanceCommandResponseHandlerTest.php → ...ntClearanceCommandResponseHandlerTest.php
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
6 changes: 3 additions & 3 deletions
6
...lers/RefundCommandResponseHandlerTest.php → ...lers/RefundCommandResponseHandlerTest.php
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
6 changes: 3 additions & 3 deletions
6
...lers/StatusCommandResponseHandlerTest.php → ...lers/StatusCommandResponseHandlerTest.php
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
8 changes: 4 additions & 4 deletions
8
tests/Executors/CommandExecutorTest.php → tests/Unit/Executors/CommandExecutorTest.php
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
3 changes: 1 addition & 2 deletions
3
tests/Facades/CommandFacadeTest.php → tests/Unit/Facades/CommandFacadeTest.php
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
2 changes: 1 addition & 1 deletion
2
...butes/AmountCommandAttributeTraitTest.php → ...butes/AmountCommandAttributeTraitTest.php
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
2 changes: 1 addition & 1 deletion
2
...butes/BillerCommandAttributeTraitTest.php → ...butes/BillerCommandAttributeTraitTest.php
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
2 changes: 1 addition & 1 deletion
2
...tes/CallbackCommandAttributeTraitTest.php → ...tes/CallbackCommandAttributeTraitTest.php
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
2 changes: 1 addition & 1 deletion
2
.../Attributes/CommandAttributeTraitTest.php → .../Attributes/CommandAttributeTraitTest.php
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
2 changes: 1 addition & 1 deletion
2
...tributes/CscCommandAttributeTraitTest.php → ...tributes/CscCommandAttributeTraitTest.php
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.