-
Notifications
You must be signed in to change notification settings - Fork 46
/
composer.json
48 lines (48 loc) · 1.12 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
{
"name": "fc2blog/blog",
"description": "オープンソースのブログ",
"license": "MIT",
"require": {
"ext-mbstring": "*",
"ext-gd": "*",
"ext-gettext": "*",
"ext-fileinfo": "*",
"ext-json": "*",
"ext-pdo": "*",
"ext-zip": "*",
"monolog/monolog": "^2.1",
"league/flysystem": "^1.1",
"twig/twig": "^3.0",
"nikic/php-parser": "^4.10",
"tuupola/base62": "^2.1",
"mibe/feedwriter": "^1.1",
"swiftmailer/swiftmailer": "^6.0",
"maxmind-db/reader": "~1.0"
},
"config": {
"vendor-dir": "app/vendor"
},
"require-dev": {
"phpunit/phpunit": "^9.2",
"simplepie/simplepie": "^1.5",
"ramsey/uuid": "^4.1",
"fakerphp/faker": "^1.13",
"uzulla/pseudo_sendmail": "^1.0"
},
"autoload": {
"psr-4": {
"Fc2blog\\": "app/src/"
},
"files": [
"app/src/include/common_functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Fc2blog\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit"
}
}