-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 904 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 904 Bytes
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
{
"name": "bulkgate/plugin",
"description": "Meta package for BulkGate plugins",
"type": "library",
"autoload": {
"classmap": ["src/"]
},
"authors": [
{
"name": "Lukáš Piják",
"email": "lukaspijak@gmail.com"
}
],
"minimum-stability": "RC",
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-mbstring": "*",
"ext-zlib": "*",
"ext-intl": "*",
"ext-curl": "*"
},
"require-dev": {
"phpstan/phpstan": "^2",
"nette/tester": "^2",
"mockery/mockery": "^1.6",
"tracy/tracy": "^2.9"
},
"scripts": {
"tester": "tester -C tests --colors=1",
"coverage": "tester -C --coverage=coverage.html --coverage-src=src --colors=1 -o console-lines",
"phpstan": "phpstan analyse -c phpstan.neon --memory-limit=1G"
}
}