-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 1.28 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
{
"name": "katmore/clientcal",
"description" : "Scheduling, job, crew, and customer management web application for construction companies",
"homepage":"https://github.com/katmore/clientcal",
"license": [
"MIT",
"GPL-3.0+"
],
"require": {
"php" : ">=7.2.1",
"dshafik/php7-mysql-shim": "^0.1.0",
"ext-imagick" : "*",
"ext-soap" : "*",
"ifsnop/mysqldump-php": "2.*"
},
"authors": [
{
"name": "Paul D. Bird II",
"email": "dougbird@katmore.com"
}
],
"autoload": {
"psr-4": {
"clientcal\\": "src/legacy"
},
"files": [
"lib/legacy/DAL/customer.php",
"lib/legacy/DAL/geoloc.php",
"lib/legacy/DAL/pop3.php",
"lib/legacy/DAL/sentry.php",
"lib/legacy/DAL/site.php",
"lib/legacy/DAL/supervisor.php",
"lib/legacy/DAL/user.php",
"lib/legacy/DAL/version.php",
"lib/legacy/BLL/balive.php",
"lib/legacy/BLL/customer.php",
"lib/legacy/BLL/menu.php",
"lib/legacy/BLL/sentry.php",
"lib/legacy/BLL/site.php",
"lib/legacy/view.php",
"lib/legacy/mysql.php"
]
}
}