-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (68 loc) · 1.9 KB
/
Copy pathcomposer.json
File metadata and controls
68 lines (68 loc) · 1.9 KB
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
{
"name": "switon/query",
"description": "Fluent read SQL builder with joins, pagination, and shard-aware execution for Switon Framework",
"type": "library",
"keywords": [
"switon",
"query-builder",
"sql",
"database"
],
"homepage": "https://github.com/switon-php/query",
"license": "MIT",
"authors": [
{
"name": "switon",
"email": "[email protected]"
}
],
"support": {
"source": "https://github.com/switon-php/query",
"issues": "https://github.com/switon-php/query/issues",
"docs": "https://docs.switon.dev/latest/query"
},
"require": {
"php": ">=8.3",
"psr/event-dispatcher": "^1.0",
"switon/core": "^1.0",
"switon/db": "^1.0",
"switon/di": "^1.0",
"switon/sharding": "^1.0"
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"switon/testing": "^1.0",
"phpstan/extension-installer": "^1.4"
},
"config": {
"allow-plugins": {
"switon/composer-extra": true,
"phpstan/extension-installer": true
}
},
"autoload": {
"psr-4": {
"Switon\\Query\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Switon\\Query\\Tests\\": "tests/"
}
},
"scripts": {
"phpstan": "@php vendor/bin/phpstan analyse",
"test:unit": "@php vendor/bin/phpunit --configuration tests/phpunit.xml.dist --testsuite=unit --display-deprecations --display-phpunit-notices",
"test": "@php vendor/bin/phpunit --configuration tests/phpunit.xml.dist --testsuite=all --display-deprecations --display-phpunit-notices"
},
"extra": {
"phpstan": {
"includes": [
"phpstan-extension.neon"
]
},
"branch-alias": {
"dev-dev": "1.0.x-dev"
}
}
}