-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
59 lines (59 loc) · 1.25 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
{
"name": "stechbd/sde",
"version": "3.0.1",
"description": "S Database Explorer (SDE) is a simple and lightweight MySQL database explorer library based on PHP and PDO.",
"type": "library",
"license": "GPL-3.0",
"keywords": [
"php",
"mysql",
"pdo",
"database",
"sde",
"stechbd",
"aashemul"
],
"homepage": "https://www.stechbd.net/project/SDE/",
"support": {
"issues": "https://github.com/STechBD/SDE/issues",
"source": "https://github.com/STechBD/SDE",
"email": "[email protected]",
"chat": "https://www.facebook.com/STechBD.Net/",
"docs": "https://docs.stechbd.net/SDE/",
"tickets": "https://clients.stechbd.net"
},
"autoload": {
"psr-4": {
"STechBD\\": "src/"
}
},
"authors": [
{
"name": "S Technologies",
"email": "[email protected]",
"homepage": "https://www.stechbd.net",
"role": "Developer"
},
{
"name": "Md. Ashraful Alam Shemul",
"email": "[email protected]",
"homepage": "https://www.aashemul.com",
"role": "Author"
}
],
"require": {},
"require-dev": {},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"test": "phpunit"
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"preferred-install": "dist",
"platform": {
"php": "7.4"
}
}
}