-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.13 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
{
"name": "flipboxfactory/saml-core-psr-log",
"description": "SAML SSO Core logger to support the different versions of psr/log",
"version": "3.0.0",
"type": "library",
"keywords": [
"cms",
"craftcms",
"psr",
"log",
"yii2"
],
"require": {
"craftcms/cms": "^4.0 || ^5.0",
"psr/log": "^3.0.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.4",
"phpunit/phpunit": "^11.1"
},
"autoload": {
"psr-4": {
"flipbox\\saml\\psr\\log\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"flipbox\\saml\\psr\\log\\tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit tests"
},
"support": {
"email": "[email protected]",
"issues": "https://github.com/flipboxfactory/saml-core-psr-log/issues?state=open",
"source": "https://github.com/flipboxfactory/saml-core-psr-log",
"docs": "https://github.com/flipboxfactory/saml-core-psr-log",
"rss": "https://github.com/flipboxfactory/saml-core-psr-log/commits/master.atom"
},
"config": {
"allow-plugins": {
"craftcms/plugin-installer": true,
"yiisoft/yii2-composer": true
}
}
}