Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@
"simplesamlphp/assert": "~1.8.2",
"simplesamlphp/composer-module-installer": "~1.4.0",
"simplesamlphp/simplesamlphp": "~2.4.2",
"simplesamlphp/xml-cas": "~2.0.0",
"simplesamlphp/xml-common": "~2.0.0",
"simplesamlphp/xml-soap": "~2.0.0",
"simplesamlphp/xml-cas": "~1.3",
"simplesamlphp/xml-common": "~1.17",
"simplesamlphp/xml-soap": "~1.5",
"symfony/http-foundation": "~6.4.0",
"symfony/http-kernel": "~6.4.0",
"simplesamlphp/saml11": "~1.2.5"
Expand All @@ -54,11 +54,8 @@
"source": "https://github.com/simplesamlphp/simplesamlphp-module-casserver"
},
"scripts": {
"validate": [
"verify": [
"vendor/bin/phpcs -p",
"vendor/bin/composer-require-checker check --config-file=tools/composer-require-checker.json composer.json",
"vendor/bin/psalm -c psalm-dev.xml",
"vendor/bin/composer-unused",
"vendor/bin/phpunit --no-coverage --testdox"
],
"tests": [
Expand Down
1 change: 0 additions & 1 deletion src/Controller/Cas20Controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

namespace SimpleSAML\Module\casserver\Controller;

use Exception;
use SimpleSAML\CAS\Constants as C;
use SimpleSAML\Configuration;
use SimpleSAML\Logger;
Expand Down
6 changes: 3 additions & 3 deletions src/Controller/LoginController.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
use Symfony\Component\HttpKernel\Attribute\AsController;
use Symfony\Component\HttpKernel\Attribute\MapQueryParameter;

use in_array;
use http_build_query;
use var_export;
use function http_build_query;
use function in_array;
use function var_export;

#[AsController]
class LoginController
Expand Down