-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.8 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.8 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
{
"name": "webarchitect609/bitrix-orm-tools",
"description": "Bitrix orm table class tools.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Sergey Gripinskiy",
"email": "web-architect@mail.ru",
"role": "Creator"
}
],
"require": {
"php": "^7.2 || ^8.0",
"symfony/finder": "^3.0 || ^4.0 || ^5.0",
"webarchitect609/bitrix-cache": "^1.6 || ^2.0",
"webarchitect609/bitrix-iblock-property-type": "^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"phpstan/phpstan": "^0.12.25",
"phpunit/phpunit": "^8.5",
"roave/security-advisories": "dev-master",
"webarchitect609/bitrix-taxidermist": "^0.1"
},
"conflict": {
"webarchitect609/bitrix-user-type": "<0.8.0"
},
"autoload": {
"psr-4": {
"WebArch\\BitrixOrmTools\\": "src/main"
}
},
"autoload-dev": {
"psr-4": {
"WebArch\\BitrixOrmTools\\Test\\": "src/test"
}
},
"scripts": {
"check:all": [
"@check:code-style",
"@check:analyse",
"@check:test",
"@check:security"
],
"check:analyse": "vendor/bin/phpstan analyse --ansi --no-progress",
"check:code-style": "vendor/bin/php-cs-fixer fix --ansi --dry-run --diff",
"check:security": "@composer update --no-suggest --no-interaction --dry-run roave/security-advisories",
"check:test": "vendor/bin/phpunit --colors=always"
},
"scripts-descriptions": {
"check:all": "Perform all the checks at once: code-style, static code analysis, unit tests and security.",
"check:analyse": "Static code analysis via PHPStan",
"check:code-style": "Check the code style.",
"check:security": "Manual dependencies security check via roave/security-advisories.",
"check:test": "Run all unit tests."
},
"config": {
"sort-packages": true
}
}