forked from phalcon/cphalcon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
93 lines (93 loc) · 2.79 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
{
"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"
],
"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.4"
},
"require-dev": {
"ext-apcu": "*",
"ext-dom": "*",
"ext-gd": "*",
"ext-iconv": "*",
"ext-igbinary": "*",
"ext-imagick": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-msgpack": "*",
"ext-pdo": "*",
"ext-redis": "*",
"ext-sqlite3": "*",
"ext-xml": "*",
"codeception/codeception": "^4.0",
"codeception/module-apc": "^1.0.0",
"codeception/module-asserts": "^1.0.0",
"codeception/module-cli": "^1.0.0",
"codeception/module-db": "^1.0.0",
"codeception/module-filesystem": "^1.0.0",
"codeception/module-memcache": "^2.0",
"codeception/module-phalcon5": "^1.0.0",
"codeception/module-redis": "^1.0.0",
"friendsofphp/php-cs-fixer": "~3.0",
"mustache/mustache": "^2.14.1",
"phalcon/ide-stubs": "^4.1",
"phalcon/zephir": "^0.17",
"phpunit/phpunit": "^9.0",
"predis/predis": "^1.1",
"squizlabs/php_codesniffer": "^3.4",
"twig/twig": "~1.36",
"vimeo/psalm": "^4.7",
"vlucas/phpdotenv": "^v5.4"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"autoload-dev": {
"psr-4": {
"Zephir\\Optimizers\\FunctionCall\\": "optimizers/",
"Phalcon\\Tests\\Cli\\": "tests/cli/",
"Phalcon\\Tests\\Unit\\": "tests/unit/",
"Phalcon\\Tests\\Integration\\": "tests/integration/",
"Phalcon\\Tests\\Database\\": "tests/database/",
"Phalcon\\Tests\\Controllers\\": "tests/_data/fixtures/controllers/",
"Phalcon\\Tests\\Fixtures\\": "tests/_data/fixtures/",
"Phalcon\\Tests\\Models\\": "tests/_data/fixtures/models/",
"Phalcon\\Tests\\Module\\": "tests/_support/Module/",
"Phalcon\\Tests\\Listener\\": "tests/_data/listener/",
"Phalcon\\Tests\\Db\\": "tests/_data/db/"
}
},
"support": {
"email": "support@phalcon.io",
"issues": "https://github.com/phalcon/cphalcon/issues",
"forum": "https://phalcon.io/forum/",
"source": "https://github.com/phalcon/cphalcon",
"docs": "https://phalcon.io/docs/",
"rss": "https://blog.phalcon.io/rss"
}
}