-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
51 lines (51 loc) · 1.48 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
{
"name": "lizmap/lizmap-mapbuilder-module",
"type": "jelix-module",
"description": "Jelix module for Lizmap, which adds a map builder based on every repositories",
"keywords": ["module", "jelix", "lizmap", "builder", "gis", "maps"],
"homepage": "https://3liz.com",
"license": "MPL-2.0",
"authors": [
{
"name": "Nicolas Boisteault",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"extra" : {
"jelix" : {
"modules": [
"mapBuilder/",
"mapBuilderAdmin/"
],
"autoconfig-access-16" : {
"[email protected]" : {
"mapBuilder": {
"__global": 1,
"index" : 2
},
"mapBuilderAdmin": {
"__global": 1,
"admin" : 2
}
}
}
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.68",
"phpstan/phpstan": "^2.1",
"jelix/jelix": "^1.8",
"proj4php/proj4php": "^2.0"
},
"scripts": {
"cs-fix": "./vendor/bin/php-cs-fixer fix",
"cs-check": "./vendor/bin/php-cs-fixer fix --dry-run --diff",
"phpstan": "./vendor/bin/phpstan analyse -c phpstan.neon"
},
"config": {
"allow-plugins": {
"jelix/composer-module-setup": true
}
}
}