-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.38 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.38 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
{
"require": {
"php": ">=8.2.0",
"geocoder-php/google-maps-provider": "^4.7",
"geocoder-php/nominatim-provider": "^5.7",
"league/iso3166": "^4.3",
"php-http/message": "^1.16",
"php-http/message-factory": "^1.1"
},
"require-dev": {
"glpi-project/tools": "^0.8.1",
"marcocesarato/php-conventional-changelog": "^1.17"
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "8.2.0"
},
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": false,
"phpstan/extension-installer": true
}
},
"autoload-dev": {
"psr-4": {
"GlpiPlugin\\Carbon\\Tests\\": "tests/src/",
"Glpi\\Tools\\": "../../tools/src/"
}
},
"scripts": {
"php-lint": "../../vendor/bin/parallel-lint --colors --exclude vendor .; ../../vendor/bin/phpstan --memory-limit=256M; ../../vendor/bin/rector process --dry-run --ansi",
"css-lint": "node_modules/.bin/stylelint --color --formatter verbose '**/*.css' '**/*.scss'",
"js-lint": "node_modules/.bin/eslint --color .",
"license-headers": "vendor/bin/licence-headers-check --ansi --no-interaction",
"build-schema": "tools/build-db-schema.php carbon | plantuml -p -tpng > docs/db-schema.png"
},
"version": "1.0.0-beta.3"
}