-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
48 lines (48 loc) · 967 Bytes
/
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
{
"name": "wjs/bx-mutagen",
"description": "Change Bitrix core behaviour at runtime",
"type": "library",
"authors": [
{
"name": "Alexander Selyuchenko",
"email": "alexander.selyuchenko@gmail.com"
}
],
"config": {
"platform": {
"php": "7.4"
},
"preferred-install": {
"*": "dist"
}
},
"autoload": {
"files": [
"src/autoload.php"
],
"psr-4": {
"WJS\\Mutagen\\BX\\": "src\\BX",
"WJS\\Mutagen\\Core\\": "src\\Core"
}
},
"autoload-dev": {
"psr-4": {
"WJS\\Mutagen\\Tests\\": "tests"
}
},
"require": {
"php": ">=7.4"
},
"require-dev": {
"phpunit/phpunit": "9.4.1",
"phpstan/phpstan": "0.12.50",
"squizlabs/php_codesniffer": "3.5.6",
"phpro/grumphp": "1.0.0"
},
"scripts": {
"grumphp": "grumphp run",
"test": "phpunit",
"analyze": "phpstan analyse src tests",
"lint": "phpcs --standard=PSR2 -s src tests"
}
}