-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.97 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.97 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "fi1a/bitrixvalidation",
"type": "bitrix-d7-module",
"description": "Модуль 1С-Битрикс \"Валидация полей и свойств\"",
"keywords": [],
"homepage": "https://github.com/fi1a/bitrixvalidation",
"license": "MIT",
"authors": [
{
"name": "Fi1a",
"email": "support@fi1a.ru"
}
],
"require": {
"php": "^7.3 || ^8",
"fi1a/collection": "^2.0",
"fi1a/installers": "^2.1",
"fi1a/validation": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"slevomat/coding-standard": "^6.3",
"squizlabs/php_codesniffer": "^3.5",
"captainhook/captainhook": "^5.4"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"fi1a/installers": true
}
},
"autoload-dev": {
"psr-4": {
"Fi1a\\Unit\\BitrixValidation\\": "tests"
}
},
"scripts": {
"fl:lint": "phpcs --cache=runtime/cache/phpcs.cache --ignore=tests/autoload.php",
"fl:phpcbf": "phpcbf --cache=runtime/cache/phpcs.cache",
"fl:test:unit:coverage:ci": "phpunit --coverage-clover runtime/logs/clover.xml",
"fl:test:unit": "phpunit",
"fl:build": "cd ./install/components/fi1a/bitrixvalidation.admin/templates/.default && npm install && npm run build && git add ./dist",
"fl:check": [
"@fl:lint",
"@fl:test:unit"
],
"pre-commit": [
"@fl:lint",
"@fl:build"
],
"pre-push": [
"@fl:test:unit"
]
},
"scripts-descriptions": {
"fl:lint": "Проверяет весь исходный код на соответсвие стандартам.",
"fl:phpcbf": "Поправляет весь исходный код на соответсвие стандартам.",
"fl:test:unit:coverage:ci": "Запускает все модульные тесты и генериреут отчет покрытия Clover.",
"fl:test:unit": "Модульное тестирование"
}
}