-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
30 lines (30 loc) · 1.08 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
{
"name": "hotelmah/mysql-table-editor",
"type": "project",
"description": "MySQL Table Editor Web Application/Project. Add, View, Edit, and Delete (CRUD) records from one table at a time. Switch to other MySQL Tables in your browser. First, set up a per Table Configuration for each table. Specify what fields to see and what fields are required for add/edit. Enjoy a fancy CSS.",
"keywords": ["MySQL","Editor", "App", "CRUD", "PHP"],
"homepage": "https://github.com/hotelmah/mysql-table-editor",
"license": "MIT",
"autoload": {
"psr-4": {
"MySQLTableEditor\\": "src/"
}
},
"require": {
"php": ">=7.0.0",
"ext-mysqli": ">=8.0.0",
"hotelmah/mysqli-wrapper": "^v1.0",
"hotelmah/modelixe": "^v2.0",
"hotelmah/write-file": "^v1.0"
},
"authors": [
{
"name": "Kevin Pereira",
"email": "[email protected]",
"homepage": "https://github.com/hotelmah",
"role": "Developer"
}
],
"minimum-stability": "stable",
"prefer-stable": true
}