-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
56 lines (56 loc) · 1.57 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
{
"name": "silinternational/ssp-base",
"description": "Base image for SimpleSAMLphp",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "SIL GTIS",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"ext-gmp": "*",
"ext-json": "*",
"codemix/yii2-streamlog": "^1.3",
"simplesamlphp/simplesamlphp": ">=2.2.2 <2.3.0",
"simplesamlphp/composer-module-installer": "^1.0",
"rlanvin/php-ip": "^1.0",
"silinternational/ssp-utilities": "v2.0.0",
"silinternational/php-env": "^3.2.0",
"silinternational/psr3-adapters": "v4.0.0",
"silinternational/yii2-json-log-targets": "^2.0",
"silinternational/idp-id-broker-php-client": "^4.4",
"yiisoft/yii2": "~2.0.12",
"yiisoft/yii2-gii": "^2.0",
"google/recaptcha": "^1.1",
"psr/log": "^3.0",
"monolog/monolog": "^3.0",
"aws/aws-sdk-php": "^3.313",
"yidas/yii2-composer-bower-skip": "^2.0"
},
"require-dev": {
"behat/behat": "^3.8",
"dmore/chrome-mink-driver": "^2.8",
"phpunit/phpunit": "^7.5.19 || ^8.0",
"roave/security-advisories": "dev-master",
"friends-of-behat/mink-extension": "^2.7"
},
"autoload": {
"files": [
"vendor/yiisoft/yii2/Yii.php"
],
"psr-4": {
"Sil\\SspBase\\Features\\": "features/",
"Sil\\SilAuth\\migrations\\": "modules/silauth/migrations/"
}
},
"config": {
"allow-plugins": {
"simplesamlphp/composer-module-installer": true,
"yiisoft/yii2-composer": true,
"simplesamlphp/composer-xmlprovider-installer": true
}
}
}