-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 948 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
{
"name": "nextras/multi-query-parser",
"type": "library",
"description": "Parses queries from a SQL file.",
"keywords": [
"parser",
"query",
"sql",
"nextras"
],
"homepage": "https://github.com/nextras/multi-query-parser",
"license": "MIT",
"authors": [
{
"name": "Nextras Project",
"homepage": "https://github.com/nextras/multi-query-parser/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/nextras/multi-query-parser/issues"
},
"require": {
"php": "~7.2 || ~8.0"
},
"require-dev": {
"nette/tester": "~2.0",
"phpstan/phpstan": "1.12.7",
"phpstan/extension-installer": "1.4.3",
"phpstan/phpstan-strict-rules": "1.6.1"
},
"autoload": {
"psr-4": {
"Nextras\\MultiQueryParser\\": "src/"
}
},
"scripts": {
"phpstan": "phpstan analyze -c .phpstan.neon",
"tests": "tester -C ./tests/cases"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}