-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
72 lines (72 loc) · 2.35 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
{
"name": "mouf/magic-query",
"description": "A very clever library to help you with SQL: generate prepared statements with a variable number of parameters, automatically writes joins... and much more!",
"keywords": ["database", "query", "mouf"],
"homepage": "http://mouf-php.com/packages/mouf/magic-query",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "David Négrier",
"email": "[email protected]",
"homepage": "http://mouf-php.com"
}
],
"require": {
"php": "^7.4 || ^8.0",
"mouf/utils.common.conditioninterface": "~2.0",
"mouf/utils.value.value-interface": "~1.0",
"mouf/utils.common.paginable-interface": "~1.0",
"mouf/utils.common.sortable-interface": "~1.0",
"mouf/schema-analyzer": "~1.0",
"twig/twig": "^2.11 || ^3",
"greenlion/php-sql-parser": "^4.3",
"doctrine/cache": "^1.5"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"satooshi/php-coveralls": "~1.0",
"doctrine/dbal": "~2.5",
"phpstan/phpstan": "^0.12.82"
},
"suggest": {
"doctrine/dbal": "To support more databases than just MySQL and to use MagicJoin feature",
"mouf/database.querywriter": "To get a nice user interface to edit your SQL queries",
"mouf/mouf": "To get a nice user interface to edit your SQL queries"
},
"conflict": {
"mouf/database.querywriter": "< 4.0"
},
"autoload": {
"psr-4": {
"Mouf\\Database\\": "src/Mouf/Database/",
"SQLParser\\": "src/SQLParser/"
}
},
"autoload-dev": {
"psr-4": {
"Mouf\\Database\\": "tests/Mouf/Database/",
"SQLParser\\": "tests/SQLParser/"
}
},
"extra": {
"mouf": {
"logo": "database.png",
"doc": [
{
"title": "MagicParameters: automatically discard unused parameters",
"url": "doc/discard_unused_parameters.md"
},
{
"title": "MagicJoin: let MagicQuery write JOINs for you",
"url": "doc/magic_join.md"
}
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"phpstan": "vendor/bin/phpstan analyse -c phpstan.neon"
}
}