-
-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy pathcomposer.json
More file actions
112 lines (112 loc) · 3.44 KB
/
composer.json
File metadata and controls
112 lines (112 loc) · 3.44 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
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
{
"name": "phalcon/forum",
"description": "Open-sourced engine for building flexible, clear and fast forums.",
"keywords": [
"forum",
"phalcon",
"discussion",
"question",
"answer",
"qa"
],
"type": "project",
"license": "BSD-3-Clause",
"homepage": "https://forum.phalconphp.com/",
"authors": [
{
"name": "Phalcon Team",
"email": "team@phalconphp.com",
"homepage": "https://phalconphp.com/en/team"
},
{
"name": "Contributors",
"homepage": "https://github.com/phalcon/forum/graphs/contributors"
}
],
"support": {
"source": "https://github.com/phalcon/forum",
"issues": "https://github.com/phalcon/forum/issues",
"wiki": "https://github.com/phalcon/forum/wiki",
"forum": "https://forum.phalconphp.com/"
},
"require": {
"php": ">= 5.6",
"ext-curl": "*",
"ext-mbstring": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-phalcon": "~3.2",
"vlucas/phpdotenv": "^2.4",
"aws/aws-sdk-php": "^3.55",
"guzzlehttp/guzzle": "^6.3",
"swiftmailer/swiftmailer": "^5.4",
"phalcongelist/php-diff": "^2.0",
"phalcon/incubator": "~3.0",
"phalcon/breadcrumbs": "1.3.*",
"egulias/email-validator": "^2.1",
"google/recaptcha": "^1.1",
"filp/whoops": "^2.1",
"elasticsearch/elasticsearch": "^5.3",
"erusev/parsedown-extra": "^0.7",
"erusev/parsedown": "^1.7",
"phalcon-ext/mailer": "~2.0",
"league/climate": "^3.2",
"stackexchange/pagedown": "^1.1",
"srmklive/flysystem-dropbox-v2": "^1.0",
"restcord/restcord": "^0.2"
},
"require-dev": {
"phpdocumentor/reflection-docblock": "^3.3",
"phpunit/phpunit": "^4.8",
"fzaninotto/faker": "^1.7",
"facebook/webdriver": "^1.6",
"codeception/codeception": "^2.4",
"codeception/verify": "~0.4",
"codeception/specify": "~0.4",
"codeception/mockery-module": "^0.2",
"squizlabs/php_codesniffer": "~3.2",
"phalcon/dd": "^1.1",
"doctrine/inflector": "1.1.*",
"illuminate/support": "5.4.*",
"symfony/browser-kit": "3.4.*",
"symfony/console": "3.4.*",
"symfony/debug": "3.4.*",
"symfony/css-selector": "3.4.*",
"symfony/dom-crawler": "3.4.*",
"symfony/finder": "3.4.*",
"symfony/process": "3.4.*",
"symfony/yaml": "3.4.*",
"doctrine/instantiator": "1.0.*"
},
"suggest": {
"ext-yaml": "*",
"ext-intl": "*"
},
"autoload": {
"psr-4": {
"Phosphorum\\": "app/library",
"Phosphorum\\Model\\": "app/model",
"Phosphorum\\Task\\": "app/task",
"Phosphorum\\Controller\\": "app/controller",
"Phosphorum\\Provider\\": "app/provider",
"Phosphorum\\Listener\\": "app/listener",
"Phosphorum\\Services\\": "app/services"
},
"files": [
"bootstrap/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Phosphorum\\Test\\Unit\\": "tests/unit/"
}
},
"scripts": {
"post-root-package-install": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
},
"config": {
"preferred-install": "dist"
}
}