-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
53 lines (53 loc) · 1.15 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
{
"name": "itosho/easy-query",
"description": "CakePHP behavior plugin for easily generating some complicated queries like (bulk) insert/upsert etc.",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"behavior",
"plugin",
"upsert",
"bulk upsert",
"bulk insert",
"insert select",
"insert once"
],
"homepage": "https://github.com/itosho/easy-query",
"license": "MIT",
"authors": [
{
"name": "itosho",
"role": "Author",
"homepage": "https://github.com/itosho"
}
],
"support": {
"issues": "https://github.com/itosho/easy-query/issues",
"source": "https://github.com/itosho/easy-query"
},
"require": {
"php": ">=8.1",
"cakephp/orm": "^5.0.0"
},
"require-dev": {
"cakephp/cakephp": "^5.0.0",
"phpunit/phpunit": "^10.1.0",
"cakephp/cakephp-codesniffer": "^5.0",
"vimeo/psalm": "^5.15"
},
"autoload": {
"psr-4": {
"Itosho\\EasyQuery\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Itosho\\EasyQuery\\Test\\": "tests"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}