-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.02 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.02 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
{
"name": "archlinux-de/flarum-theme-archlinux",
"description": "Arch Linux Theme for Flarum",
"license": "GPL-3.0-or-later",
"type": "flarum-extension",
"require": {
"PHP": "^8.2",
"flarum/core": "^1.0.0"
},
"autoload": {
"psr-4": {
"ArchLinux\\Theme\\": "src/",
"ArchLinux\\Theme\\Test\\": "tests/"
}
},
"extra": {
"flarum-extension": {
"title": "Arch Linux Theme",
"icon": {
"name": "fas fa-pencil-alt",
"backgroundColor": "#08c",
"color": "#fff"
}
}
},
"require-dev": {
"phpunit/phpunit": "^11.5",
"squizlabs/php_codesniffer": "^4.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}