-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
63 lines (63 loc) · 1.8 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "ecphp/laravel-ecas",
"description": "A bundle for Laravel, providing authentication against European Commission Authentication System (ECAS) server.",
"license": "BSD-3-Clause",
"keywords": [
"authentication",
"cas",
"ecas",
"central authentication service",
"single sign-on",
"sso"
],
"homepage": "https://github.com/ecphp/",
"require": {
"php": ">= 8.1",
"ext-dom": "*",
"ext-simplexml": "*",
"ecphp/ecas": "^3.0",
"ecphp/laravel-cas": "^1.0",
"laravel/framework": "^10 || ^11"
},
"require-dev": {
"ecphp/php-conventions": "^1.0",
"guzzlehttp/guzzle": "^7.9",
"nyholm/psr7": "^1.8",
"orchestra/testbench": "^8.26 || ^9.4",
"phpstan/phpstan-strict-rules": "^1.6",
"roave/security-advisories": "dev-latest",
"symfony/cache": "^6.4 || ^7.1",
"symfony/psr-http-message-bridge": "^v6.4 || ^7.1"
},
"suggest": {},
"autoload": {
"psr-4": {
"EcPhp\\LaravelEcas\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EcPhp\\LaravelEcas\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"EcPhp\\LaravelEcas\\Providers\\LaravelEcasProvider"
]
}
},
"scripts": {
"changelog-unreleased": "auto-changelog -c .auto-changelog -u",
"changelog-version": "auto-changelog -c .auto-changelog -v",
"grumphp": "./vendor/bin/grumphp run",
"phpunit": "vendor/bin/phpunit"
}
}