bellangelo / test-the-cloud
PHPUnit extension to test your cloud infrastructure
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/bellangelo/test-the-cloud
Requires
- php: >=7.4
- aws/aws-sdk-php: ^3.285
- phpunit/phpunit: ^9.6.0 || ^10.4.0
This package is auto-updated.
Last update: 2025-09-08 13:07:42 UTC
README
A PHPUnit extension for testing your cloud infrastructure.
Installation
composer require bellangelo/test-the-cloud
Configuring the extension
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" bootstrap="vendor/autoload.php" > + <extensions> + <extension class="Bellangelo\TestTheCloud\Extension"> + <arguments> + <array> + <element key="template"> + <string>my-template</string> + </element> + </array> + </arguments> + </extension> </extensions> <testsuites> <testsuite name="unit"> <directory>test/Unit/</directory> </testsuite> </testsuites> </phpunit>
Roadmap
- Load AWS credentials through the configuration.
- Assert resources contain tag.
- Enforce name conventions in resources.
- Add support for PHPUnit 10+.