forked from phalcon/cphalcon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
101 lines (101 loc) · 2.94 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
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
{
"name": "phalcon/cphalcon",
"description": "Phalcon is an open source web framework delivered as a C extension for the PHP language providing high performance and lower resource consumption.",
"keywords": [
"extension",
"phalcon",
"framework",
"high load",
"mvc",
"psr-7",
"psr-17"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Phalcon Team",
"email": "team@phalcon.io",
"homepage": "https://phalcon.io/en/team"
},
{
"name": "Contributors",
"homepage": "https://github.com/phalcon/cphalcon/graphs/contributors"
}
],
"require": {
"php": ">=7.2 <8.0"
},
"provide": {
"psr/cache": "^1.0",
"psr/container": "^1.0",
"psr/event-dispatcher": "^0.7.0",
"psr/event-dispatcher-message": "^0.6.0",
"psr/event-dispatcher-task": "^0.6.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/link": "^1.0",
"psr/log": "^1.1",
"psr/simple-cache": "^1.0"
},
"require-dev": {
"ext-dom": "*",
"ext-gd": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-psr": "^0.7|1.0",
"ext-xml": "*",
"ext-redis": "*",
"ext-igbinary": "*",
"ext-msgpack": "*",
"ext-apcu": "*",
"ext-imagick": "*",
"ext-intl": "*",
"ext-iconv": "*",
"ext-sqlite3": "*",
"codeception/codeception": "^4.0",
"phpunit/phpunit": "^8.0",
"friendsofphp/php-cs-fixer": "~2.0",
"mustache/mustache": "^2.12",
"predis/predis": "^1.1",
"squizlabs/php_codesniffer": "^3.4",
"twig/twig": "~1.36",
"vlucas/phpdotenv": "^2.5",
"codeception/module-asserts": "^1.0.0",
"codeception/module-cli": "^1.0.0",
"codeception/module-filesystem": "^1.0.0",
"codeception/module-phalcon4": "^1.0.3",
"codeception/module-redis": "^1.0.0",
"codeception/module-db": "^1.0.0",
"codeception/module-apc": "^1.0.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"autoload-dev": {
"psr-4": {
"Zephir\\Optimizers\\": "optimizers/",
"Phalcon\\Test\\Unit\\": "tests/unit/",
"Phalcon\\Test\\Integration\\": "tests/integration/",
"Phalcon\\Test\\Controllers\\": "tests/_data/fixtures/controllers/",
"Phalcon\\Test\\Fixtures\\": "tests/_data/fixtures/",
"Phalcon\\Test\\Models\\": "tests/_data/fixtures/models/",
"Phalcon\\Test\\Module\\": "tests/_support/Module/",
"Phalcon\\Test\\Listener\\": "tests/_data/listener/",
"Phalcon\\Test\\Db\\": "tests/_data/db/"
}
},
"support": {
"email": "support@phalcon.io",
"issues": "https://github.com/phalcon/cphalcon/issues",
"forum": "https://phalcon.link/forum/",
"source": "https://github.com/phalcon/cphalcon",
"docs": "https://phalcon.link/docs/",
"rss": "https://blog.phalcon.io/rss"
}
}