-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
139 lines (114 loc) · 3.22 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "websharks/core",
"homepage": "https://github.com/websharks/core",
"description": "Core PHP library used by WebSharks, Inc.",
"keywords": ["websharks", "core"],
"type": "library",
"license": "GPL-3.0+",
"authors": [{
"name": "websharks",
"homepage": "https://websharks.org",
"role": "company"
}, {
"name": "jaswrks",
"homepage": "https://jaswrks.com",
"role": "developer"
}, {
"name": "raamdev",
"homepage": "http://raam.org",
"role": "developer"
}],
"support": {
"source": "https://github.com/websharks/core",
"issues": "https://github.com/websharks/core/issues"
},
"require": {
"php-64bit": ">=7.0.4",
"ext-SPL": "*",
"ext-Phar": "*",
"ext-Reflection": "*",
"ext-ctype": "*",
"ext-date": "*",
"ext-fileinfo": "*",
"ext-filter": "*",
"ext-gd": "*",
"ext-hash": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-session": "*",
"ext-tokenizer": "*",
"ext-zlib": "*",
"lib-pcre": "*",
"ext-pcre": "*",
"lib-openssl": "*",
"ext-openssl": "*",
"lib-curl": "*",
"ext-curl": "*",
"lib-ICU": "*",
"ext-intl": "*",
"lib-iconv": "*",
"ext-iconv": "*",
"ext-gmp": "*",
"ext-bcmath": "*",
"ext-dom": "*",
"ext-xml": "*",
"ext-libxml": "*",
"lib-libxml": "*",
"ext-xmlreader": "*",
"ext-xmlwriter": "*",
"ext-SimpleXML": "*",
"websharks/dicer": "170913.25494",
"websharks/sharkicons": "160620",
"websharks/php-markdown": "170729",
"michelf/php-smartypants": "1.*",
"ryakad/pandoc-php": "1.*",
"symfony/yaml": "2.*",
"ramsey/uuid": "3.*",
"hashids/hashids": "2.0.3",
"defuse/php-encryption": "2.*",
"stripe/stripe-php": "4.*",
"aws/aws-sdk-php": "3.*",
"slim/http": "0.*",
"league/iso3166": "1.*",
"abraham/twitteroauth": "0.*",
"league/oauth2-server": "6.*",
"embedly/embedly-php": "0.*",
"corneltek/getoptionkit": "2.*",
"jeremeamia/superclosure": "2.*",
"redeyeventures/geopattern": "1.*",
"phpmailer/phpmailer": "5.*"
},
"require-dev": {
"ext-Zend-OPcache": "*",
"ext-PDO": "*",
"ext-mysqlnd": "*",
"ext-pdo_mysql": "*",
"ext-zip": "*",
"ext-pspell": "*",
"ext-memcached": "*"
},
"suggest": {
"ext-Zend-OPcache": "* :: Highly recommended for faster processing.",
"ext-PDO": "* :: Required when using PDO utilities.",
"ext-mysqlnd": "* :: Required when using PDO utilities.",
"ext-pdo_mysql": "* :: Required when using PDO utilities.",
"ext-zip": "* :: Required by routines that deal with ZIP files.",
"ext-pspell": "* :: Required by routines that deal with spellcheck.",
"ext-memcached": "* :: Required by routines that deal Memcache."
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"WebSharks\\Core\\Classes\\": "src/includes/classes",
"WebSharks\\Core\\Functions\\": "src/includes/functions",
"WebSharks\\Core\\Interfaces\\": "src/includes/interfaces",
"WebSharks\\Core\\Traits\\": "src/includes/traits"
},
"files": ["src/includes/functions/.load.php"]
},
"config": {
"vendor-dir": "src/vendor",
"preferred-install": "dist"
}
}