-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.23 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.23 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
{
"name": "salesrender/plugin-component-db",
"description": "SalesRender db component",
"type": "library",
"minimum-stability": "stable",
"license": "proprietary",
"authors": [
{
"name": "Timur Kasumov aka XAKEPEHOK",
"email": "support@salesrender.com"
}
],
"autoload": {
"psr-4": {
"SalesRender\\Plugin\\Components\\Db\\": "src/"
}
},
"require": {
"php": ">=7.4.0",
"ext-json": "*",
"ext-sqlite3": "*",
"catfan/medoo": "^1.7",
"symfony/console": "^5.0",
"ramsey/uuid": "^3.9",
"haydenpierce/class-finder": "^0.4.0"
},
"autoload-dev": {
"psr-4": {
"SalesRender\\Plugin\\Components\\Db\\": "tests/"
},
"classmap": [
"tests/Components/TestModelClass.php",
"tests/Components/TestPluginModelClass.php",
"tests/Components/TestSinglePluginModelClass.php",
"tests/Components/TestModelWithArrayClass.php",
"tests/Components/TestModelWithSubclass.php",
"tests/Components/TestModelWithAfterAndBeforeClass.php",
"tests/Components/TestAnotherSinglePluginModelClass.php",
"tests/Components/TestAnotherPluginModelClass.php"
]
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"symfony/filesystem": "^5.0"
}
}