-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.78 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.78 KB
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
{
"$schema": "https://raw.githubusercontent.com/composer/composer/master/res/composer-schema.json",
"name": "cakmoel/scriptlog",
"type": "project",
"description": "A simple, secure, modular PHP blog engine",
"keywords": ["blog", "cms", "php", "blogging"],
"homepage": "https://github.com/cakmoel/scriptlog",
"license": "MIT",
"authors": [
{
"name": "M Noermoehammad",
"email": "alanmoehammad@gmail.com",
"homepage": "https://github.com/cakmoel",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/cakmoel/scriptlog/issues",
"source": "https://github.com/cakmoel/scriptlog"
},
"config": {
"platform": {
"php": "7.4.33"
},
"optimize-autoloader": true,
"sort-packages": true
},
"require": {
"php": ">=7.4.33",
"sinergi/browser-detector": "^6.1",
"intervention/image": "^2.5",
"ircmaxell/random-lib": "^1.2",
"egulias/email-validator": "^2.1",
"voku/anti-xss": "^4.1",
"defuse/php-encryption": "^2.2",
"filp/whoops": "^2.9",
"psr/log": "^1.1",
"melbahja/seo": "^2.0",
"laminas/laminas-escaper": "^2.12",
"laminas/laminas-crypt": "^3.3",
"laminas/laminas-feed": "^2.17",
"catfan/medoo": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"classmap": ["src/lib/"]
},
"minimum-stability": "stable",
"prefer-stable": true,
"suggest": {
"ext-pdo": "Required for database support",
"ext-mysqli": "Required for MySQL support",
"ext-gd": "Required for image manipulation",
"ext-curl": "Required for HTTP requests"
}
}