-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.4 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.4 KB
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
{
"repositories": [
{
"type": "package",
"package": {
"name": "imsglobal/caliper",
"version": "1.2.0",
"dist": {
"type": "zip",
"url" : "https://github.com/ubc/mediawiki-extensions-caliper/raw/master/packages/caliper-php.zip"
},
"autoload": {
"psr-4": {
"IMSGlobal\\Caliper\\": "src/"
}
},
"_comment": {
"source": {
"url": "https://github.com/IMSGlobal/caliper-php",
"type": "git",
"reference": "dev-develop#c7e34e230abc7bbb647f8f94245cb649f6191bcd"
}
}
}
}
],
"require": {
"nategood/httpful": "^1.0",
"imsglobal/caliper": "1.2.0",
"onelogin/php-saml": "^4.2"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phing/phing": "2.*",
"pdepend/pdepend" : "2.*",
"phpmd/phpmd" : "@stable",
"squizlabs/php_codesniffer": "2.*",
"sebastian/phpcpd": "*",
"jms/serializer": "1.7.*"
},
"scripts": {
"post-install-cmd": [
"[ -e app/config/database.php ] || cp app/config/database.php.default app/config/database.php",
"[ -e app/config/guard.php ] || cp app/plugins/guard/config/guard_default.php app/config/guard.php",
"mkdir -p app/tmp && chmod 777 app/tmp"
]
},
"config": {
"platform": {
"php": "8.3"
}
}
}