-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathcomposer.json
62 lines (62 loc) · 1.67 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
{
"name": "mindstellar/osclass",
"type": "project",
"description": "With Osclass, get your own classifieds site for free. Build your own Osclass installation and start advertising real estate, jobs or whatever you want- in minutes! ",
"keywords": [
"osclass",
"classified",
"open-source",
"php-classified",
"cms"
],
"homepage": "https://github.com/mindstellar/osclass",
"license": "Apache-2.0",
"authors": [
{
"name": "Osclass Community",
"homepage": "https://github.com/mindstellar/Osclass/graphs/contributors"
}
],
"autoload": {
"psr-4": {"mindstellar\\": "oc-includes/osclass/classes"},
"classmap": [
"oc-includes/osclass",
"oc-includes/AjaxUploader.php",
"oc-includes/Akismet.class.php"
]
},
"config": {
"vendor-dir": "oc-includes/vendor",
"optimize-autoloader": true
},
"require": {
"php": ">=7.2.0",
"ext-ctype": "*",
"ext-json": "*",
"ext-openssl": "*",
"ext-mysqli": "*",
"ext-zip": "*",
"ext-curl": "*",
"ext-posix": "*",
"ext-fileinfo": "*",
"ext-mbstring": "*",
"ext-gd": "*",
"ezyang/htmlpurifier": "4.17.*",
"phpmailer/phpmailer": "6.5.*",
"pclzip/pclzip": "2.8.*",
"phpseclib/phpseclib": "2.0.*",
"pensiero/php-openssl-cryptor": "0.1.*",
"google/recaptcha": "1.1.*",
"gettext/gettext": "4.8.*",
"phpseclib/mcrypt_compat": "^1.0"
}
,
"require-dev": {
"roave/security-advisories": "dev-latest"
},
"suggest": {
"ext-apcu": "Fast PHP user cache",
"ext-memcache": "Will enable to communicate with memcached server",
"ext-imagick": "Will enable to use Imagick library for image manipulation"
}
}