-
- Downloads
test: init
Showing
- .gitignore 1 addition, 0 deletions.gitignore
- composer.json 12 additions, 1 deletioncomposer.json
- phpunit.xml 33 additions, 0 deletionsphpunit.xml
- tests/Providers/LaravelCasProvider.php 48 additions, 0 deletionstests/Providers/LaravelCasProvider.php
- tests/TestCase.php 29 additions, 0 deletionstests/TestCase.php
- tests/Unit/CasInterfaceTest.php 27 additions, 0 deletionstests/Unit/CasInterfaceTest.php
- tests/Unit/ProxyCallBackControllerTest.php 36 additions, 0 deletionstests/Unit/ProxyCallBackControllerTest.php
- tests/bootstrap.php 34 additions, 0 deletionstests/bootstrap.php
... | ... | @@ -24,7 +24,12 @@ |
"require-dev": { | ||
"ecphp/php-conventions": "^1.0", | ||
"guzzlehttp/guzzle": "^7.5", | ||
"phpstan/phpstan-strict-rules": "^1.4" | ||
"phpstan/phpstan-strict-rules": "^1.4", | ||
"orchestra/testbench": "^8.22", | ||
"nyholm/psr7": "^1.5", | ||
"symfony/cache": "^6.2", | ||
"symfony/psr-http-message-bridge": "^2.1" | ||
}, | ||
"suggest": {}, | ||
"autoload": { | ||
... | ... | @@ -32,6 +37,12 @@ |
"EcPhp\\LaravelEcas\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"EcPhp\\LaravelEcas\\Tests\\": "tests/", | ||
"App\\": "vendor/orchestra/testbench-core/laravel/app" | ||
} | ||
}, | ||
"config": { | ||
"allow-plugins": { | ||
"phpstan/extension-installer": true, | ||
... | ... |
phpunit.xml
0 → 100644
tests/Providers/LaravelCasProvider.php
0 → 100644
tests/TestCase.php
0 → 100644
tests/Unit/CasInterfaceTest.php
0 → 100644
tests/Unit/ProxyCallBackControllerTest.php
0 → 100644
tests/bootstrap.php
0 → 100644
Please register or sign in to comment