-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
55 lines (55 loc) · 1.33 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "widoz/bem",
"description": "Bem convention as class",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Guido Scialfa",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"homepage": "https://github.com/widoz/bem",
"support": {
"issues": "https://github.com/widoz/bem/issues"
},
"autoload": {
"psr-4": {
"Widoz\\Bem\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Widoz\\Bem\\Tests\\": "tests/php/",
"Widoz\\Bem\\Tests\\Unit\\": "tests/php/Unit",
"Widoz\\Bem\\Tests\\Integration\\": "tests/php/Integration"
}
},
"require": {
"php": ">=8.0"
},
"conflict": {
"doctrine/instantiator": ">=2.0"
},
"require-dev": {
"phpunit/phpunit": "^9",
"brain/monkey": "^2",
"inpsyde/php-coding-standards": "^1",
"fakerphp/faker": "^1",
"vimeo/psalm": "^5.26"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"cs": "@php ./vendor/bin/phpcs",
"cs:fix": "@php ./vendor/bin/phpcbf",
"tests": "@php ./vendor/bin/phpunit",
"analisys": "@php ./vendor/bin/psalm --show-info=false --output-format=compact",
"analisys:ci": "@php ./vendor/bin/psalm --show-info=false --output-format=github"
}
}