-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
38 lines (32 loc) · 827 Bytes
/
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
{
"name": "mroosz/group-permissions",
"type": "project",
"require": {
"php": "^7.3 | ^8.0",
"matomo/matomo": "=5.1.2"
},
"require-dev": {
"phpstan/phpstan": "^1.12.15"
},
"autoload": {
"psr-4": {
"Piwik\\Plugins\\GroupPermissions\\": "./"
}
},
"scripts": {
"lint": "linting/vendor/bin/php-cs-fixer check",
"lint-fix": "linting/vendor/bin/php-cs-fixer fix",
"phpstan": "vendor/bin/phpstan analyse"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}