forked from regiomedia/bitrix-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (33 loc) · 1.35 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
{
"require": {
"arrilot/bitrix-migrations": "^2.2",
"arrilot/bitrix-models": "^0.7.13",
"maximaster/tools.twig": "^1.1",
"bitrix-expert/bbc": "^1.0",
"illuminate/database": "^5.6",
"illuminate/events": "^5.6",
"kint-php/kint": "^3.0",
"kint-php/kint-twig": "^2.0",
"bitrix-expert/tools": "^1.5",
"notamedia/console-jedi": "^1.2",
"vlucas/phpdotenv": "^2.4",
"bitrix-expert/monolog-adapter": "^1.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "2.*"
},
"scripts": {
"lint:php": "php ./vendor/bin/phpcs --encoding=utf-8 --ignore=./local/components/*/templates/* --standard=ruleset.xml --extensions=php ./local/classes ./local/components",
"fix:php": "php ./vendor/bin/phpcbf --encoding=utf-8 --ignore=./local/components/*/templates/* --standard=ruleset.xml --extensions=php ./local/classes ./local/components"
},
"autoload": {
"psr-4": {"Local\\" : "local/classes/"}
},
"extra": {
"installer-paths": {
"./bitrix/modules/{$name}/": ["type:bitrix-d7-module", "type:bitrix-module"],
"./bitrix/components/{$name}/": ["type:bitrix-d7-component", "type:bitrix-component"],
"./bitrix/templates/{$name}/": ["type:bitrix-d7-template", "type:bitrix-theme"]
}
}
}