-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·44 lines (44 loc) · 1.29 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": "phoenixweb/mabarrackcrm",
"description": "Mabarrack CRM",
"minimum-stability": "stable",
"license": "proprietary",
"authors": [
{
"name": "James Jones",
"email": "[email protected]"
}
],
"require": {
"twbs/bootstrap": "^4.5",
"components/jquery": "*",
"ext-json": "*",
"ext-pdo": "*",
"ext-mysqli": "*",
"ext-ctype": "*",
"donquixote/cellbrush" : "*",
"fortawesome/font-awesome" : "*",
"mottie/tablesorter" : "*"
},
"autoload": {
"psr-4": {
"Phoenix\\": "src/"
},
"files": [
"src/Functions.php"
]
},
"scripts": {
"post-update-cmd": "@front-end-stuff",
"post-install-cmd": "@front-end-stuff",
"front-end-stuff": [
"cp vendor/twbs/bootstrap/dist/js/* public_html/js/",
"cp vendor/components/jquery/jquery.min.js public_html/js/jquery.min.js; cp vendor/components/jquery/jquery.min.map public_html/js/jquery.min.map;",
"cp vendor/fortawesome/font-awesome/scss/* public_html/scss/font-awesome/; cp vendor/fortawesome/font-awesome/webfonts/* public_html/fonts/font-awesome/",
"cp vendor/mottie/tablesorter/dist/js/jquery.tablesorter.combined.min.js public_html/js/jquery.tablesorter.combined.js"
]
},
"require-dev": {
"kint-php/kint": "3.0"
}
}