-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
72 lines (72 loc) · 1.66 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
64
65
66
67
68
69
70
71
72
{
"name": "patrickrobrecht/kirchen-im-web",
"description": "overview of churchy websites and social media profiles in the German speaking area",
"keywords": [
"churches",
"map",
"social-media"
],
"type": "project",
"homepage": "https://kirchen-im-web.de/",
"support": {
"issues": "/~https://github.com/patrickrobrecht/kirchen-im-web/issues",
"source": "/~https://github.com/patrickrobrecht/kirchen-im-web/archive/main.zip"
},
"license": "GPL-3.0",
"require": {
"php": "^8.3",
"ext-curl": "*",
"ext-dom": "*",
"ext-gettext": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-pdo": "*",
"guzzlehttp/guzzle": "^7.8",
"opencage/geocode": "^3.3",
"php-di/slim-bridge": "^3.4",
"phpfastcache/phpfastcache": "^9.2",
"phpmailer/phpmailer": "^6.9",
"raiym/instagram-php-scraper": "^0.12.9",
"slim/psr7": "^1.7",
"slim/slim": "^4.14",
"slim/twig-view": "^3.3",
"symfony/twig-bridge": "^7.1",
"symfony/translation": "^7.1"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"phpcompatibility/php-compatibility": "^9.3.5",
"squizlabs/php_codesniffer": "^3.9.0"
},
"scripts": {
"cs": [
"@csPHP",
"npm run csCSS",
"npm run csJS"
],
"csPHP": [
"phpcs"
],
"csfix": [
"@csfixPHP",
"npm run csfixCSS",
"npm run csfixJS"
],
"csfixPHP": [
"phpcbf"
]
},
"autoload": {
"psr-4": {
"KirchenImWeb\\": "src/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"audit": {
"abandoned": "fail"
}
}
}