-
Notifications
You must be signed in to change notification settings - Fork 33
/
composer.json
executable file
·42 lines (42 loc) · 1.14 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
{
"name": "opencaching/opencaching.pl",
"description": "The source code of Opencaching.PL (and some other domains)",
"license": "GPL-3.0-only",
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-gettext": "*",
"ext-gd": "*",
"ext-mbstring": "*",
"ext-apcu": "*",
"ext-pdo": "*",
"ext-iconv": "*",
"ext-simplexml": "*",
"ext-libxml": "*",
"ext-mysqli": "*",
"ext-openssl": "*",
"aferrandini/phpqrcode": "^1.0",
"ezyang/htmlpurifier": "^4.13",
"kint-php/kint": "^3.3",
"npm-asset/js-cookie": "^2.1.3",
"friendsofphp/php-cs-fixer": "^3.4"
},
"autoload": {
"psr-4": {
"okapi\\": "okapi/",
"src\\": "src/"
},
"classmap": [
"modules/openchecker/openchecker_classes.php",
"powerTrail/powerTrailBase.php",
"powerTrail/powerTrailController.php",
"powerTrail/sendEmail.php"
]
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}