-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.17 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.17 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
59
{
"name": "runcmf/runbb",
"description": "RunBB forum based on FeatherBB",
"license": "Apache-2.0",
"type": "library",
"keywords": [
"RunCMF",
"RunBB",
"Slim3",
"Slim 3",
"Twig",
"Fenom",
"Idiorm"
],
"authors": [
{
"name": "Vladimir",
"email": "1f7.wizard@gmail.com",
"homepage": "http://runcmf.ru"
}
],
"require": {
"php": ">=5.6.0",
"slim/slim": "~3.7",
"slim/flash": "~0.2",
"j4mie/idiorm": "~1.5",
"gettext/gettext": "~4.2",
"s9e/text-formatter": "~0.9",
"firebase/php-jwt": "~4.0",
"monolog/monolog": "~1.22",
"runcmf/runbb-ext-renderer": "~0.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "~2.5",
"phpunit/phpunit": "~5.7"
},
"suggest": {
"runcmf/runtracy": "View debug info and queries log"
},
"autoload": {
"psr-4": {
"RunBB\\": "src/RunBB"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-package-update": "RunBB\\Helpers\\Update::postUpdate",
"test": [
"@phpunit",
"@phpcs"
],
"phpunit": "php vendor/bin/phpunit",
"phpcs": "php vendor/bin/phpcs"
}
}