-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
82 lines (82 loc) · 2.22 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "webarchitect609/bitrix-cache",
"description": "Comfortable fluent interface for Bitrix cache. Anti-stampede cache protection.",
"homepage": "https://github.com/webarchitect609/bitrix-cache",
"keywords": [
"bitrix",
"cache",
"caching",
"psr-16"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Sergey Gripinskiy",
"email": "[email protected]",
"role": "Author"
},
{
"name": "Oleg Maksimenko",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "Nicolas Grekas",
"email": "[email protected]",
"role": "Indirect Contributor"
}
],
"require": {
"php": "^7.2 || ^8.0",
"psr/cache": "^1.0",
"psr/log": "^1.1",
"psr/simple-cache": "^1.0",
"symfony/contracts": "^1.1.8 || ^2.0 || ^3.0",
"symfony/polyfill-php80": "^1.18"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"phpstan/phpstan": "1.10",
"phpunit/phpunit": "^9.6",
"roave/security-advisories": "dev-master",
"webarchitect609/bitrix-taxidermist": "^0.2.0"
},
"autoload": {
"psr-4": {
"WebArch\\BitrixCache\\": "src/main"
}
},
"autoload-dev": {
"psr-4": {
"WebArch\\BitrixCache\\Test\\": "src/test"
}
},
"scripts": {
"check:all": [
"@check:code-style",
"@check:analyse",
"@check:test",
"@check:security"
],
"check:analyse": "vendor/bin/phpstan analyse --ansi --no-progress --xdebug",
"check:code-style": "vendor/bin/php-cs-fixer fix --ansi --dry-run --diff",
"check:security": "@composer update --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
},
"funding": [
{
"type": "ЮMoney",
"url": "https://sobe.ru/na/bitrix_cache"
}
]
}