-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
50 lines (50 loc) · 1.43 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
{
"name": "centralnicgroup-opensource/rtldev-middleware-blesta",
"description": "Blesta CentralNic Reseller Registrar Module",
"type": "project",
"require": {
"centralnic-reseller/php-sdk": "^9.0.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"phpstan/phpstan": "^1.12"
},
"license": "MIT",
"authors": [
{
"name": "Kai Schwarz",
"homepage": "https://github.com/KaiSchwarz-cnic"
},
{
"name": "Sebastian Vassiliou",
"homepage": "https://github.com/SebastianVassiliou-cnic"
},
{
"name": "Asif Nawaz",
"homepage": "https://github.com/AsifNawaz-cnic"
}
],
"scripts": {
"phpstan": [
"@composer update",
"phpstan analyze -vvv -c .github/linters/phpstan.neon --memory-limit 10G"
],
"codecheck": [
"@composer update",
"phpcs --standard=PSR12 -q -n -s --colors --ignore=node_modules,vendor,build,tmp components"
],
"codefix": [
"@composer update",
"phpcbf --standard=PSR12 -q --ignore=node_modules,vendor,build,tmp components"
]
},
"config": {
"optimize-autoloader": true,
"vendor-dir": "components/modules/cnr/apis/vendor"
},
"autoload": {
"psr-4": {
"CNR\\MODULE\\LIB\\": "components/modules/cnr/lib/"
}
}
}