This repository was archived by the owner on Jul 28, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·53 lines (53 loc) · 1.38 KB
/
composer.json
File metadata and controls
executable file
·53 lines (53 loc) · 1.38 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
{
"name": "spaceonfire/bitrix-tools",
"description": "Utility classes for Bitrix projects",
"keywords": ["bitrix", "tools", "helpers", "utilities"],
"license": "MIT",
"authors": [
{
"name": "Constantine Karnaukhov",
"email": "genteelknight@gmail.com",
"role": "Maintainer"
}
],
"require": {
"php": "^7.2|^8.0",
"ext-json": "*",
"ext-dom": "*",
"narrowspark/http-status": "^4.1",
"spaceonfire/collection": "^1.3|^2.5",
"spaceonfire/type": "^1.0|^2.5",
"webmozart/assert": "^1.0"
},
"require-dev": {
"phpstan/phpstan": "^0.12",
"roave/security-advisories": "dev-latest",
"spaceonfire/simple-php-apidoc": "^1.1",
"symfony/property-info": "^5.0",
"phpdocumentor/reflection-docblock": "^5.1",
"symplify/easy-coding-standard-prefixed": "^8.0"
},
"suggest": {
"symfony/property-info": "Required if you want to use for ComponentPropertiesTrait",
"phpdocumentor/reflection-docblock": "Required if you want to use for ComponentPropertiesTrait"
},
"autoload": {
"psr-4": {
"spaceonfire\\BitrixTools\\": "src/"
},
"files": [
"autoload.php"
]
},
"bin": [
"bin/run-in-background.php"
],
"scripts": {
"doc": "bash bin/apidoc.sh",
"codestyle": "ecs check --ansi",
"lint": "phpstan analyze --memory-limit=512M --ansi"
},
"config": {
"sort-packages": true
}
}