-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathcomposer.json
75 lines (68 loc) · 1.94 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "part-db/server",
"description": "Part-DB is a tool for managment of electronic parts.",
"version": "0.6.0",
"type": "project",
"keywords": ["database", "electronic", "application"],
"homepage": "https://github.com/jbtronics/Part-DB",
"support": {
"issues": "https://github.com/jbtronics/Part-DB/issues",
"forum": "https://www.mikrocontroller.net/topic/305023",
"wiki": "https://github.com/jbtronics/Part-DB/wiki"
},
"license": "GPL-2.0+",
"require": {
"php": ">=7.0",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"ext-gettext": "*",
"ext-json": "*",
"golonka/bbcodeparser": "dev-master",
"smarty/smarty": "^3.1",
"smarty-gettext/smarty-gettext": "^1.5.1",
"tecnickcom/tcpdf": "v6.4.4",
"slim/slim": "3.*",
"ircmaxell/password-compat": "1.*",
"snapappointments/bootstrap-select": "1.*",
"components/jquery": "^3.3",
"kartik-v/bootstrap-fileinput": "4.*",
"jquery-form/form": "4.*",
"nnnick/chartjs": "2.7.*",
"geertw/ip-anonymizer" : "1.*",
"ext-iconv": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.*",
"filp/whoops": "*",
"maximebf/debugbar": "1.*"
},
"suggest": {
"phpunit/phpunit": "Needed for unittests in development.",
"ext-intl": "Needed for localized datetime formatting.",
"ext-curl": "Needed for better downloads.",
"ext-libxml": "Needed for XML import/export",
"ext-dom": "Needed for import/export",
"ext-fileinfo": "Needed for mime type determination",
"ext-iconv": "Needed for money string localization",
"ext-simplexml": "Needed for Update panels"
},
"config": {
"preferred-install": {
"*": "dist"
},
"platform": {
"php": "7.0.10"
},
"sort-packages": true
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:jbtronics/GolonkaBBCodeParser.git"
}
],
"autoload": {
"psr-4": {"PartDB\\": "lib/"}
}
}