-
-
Notifications
You must be signed in to change notification settings - Fork 2k
/
composer.json
128 lines (128 loc) · 4.85 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"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"
],
"version": "5.8.0",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Phalcon Team",
"email": "[email protected]",
"homepage": "https://phalcon.io/en/team"
},
{
"name": "Contributors",
"homepage": "https://github.com/phalcon/cphalcon/graphs/contributors"
}
],
"require": {
"php": ">=8.0"
},
"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": "^5.4",
"phalcon/zephir": "dev-development",
"phpunit/phpunit": "^9.0",
"predis/predis": "^1.1",
"squizlabs/php_codesniffer": "^3.4",
"twig/twig": "~1.36",
"vimeo/psalm": "^5.18",
"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\\Modules\\Frontend\\": "tests/_data/fixtures/modules/frontend/",
"Phalcon\\Tests\\Modules\\Backend\\": "tests/_data/fixtures//modules/backend/",
"Phalcon\\Tests\\Modules\\Frontend\\Controllers\\": "tests/_data/fixtures/modules/frontend/controllers/",
"Phalcon\\Tests\\Modules\\Backend\\Controllers\\": "tests/_data/fixtures//modules/backend/controllers/",
"Phalcon\\Tests\\Modules\\Backend\\Tasks\\": "tests/_data/fixtures//modules/backend/tasks/",
"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": "[email protected]",
"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"
},
"scripts": {
"cs": "php -d extension=ext/modules/phalcon.so ./vendor/bin/phpcs --standard=phpcs.xml",
"cs-fix": "php -d extension=ext/modules/phalcon.so ./vendor/bin/phpcbf --standard=phpcs.xml",
"test-unit": "php -d extension=ext/modules/phalcon.so ./vendor/bin/codecept run --ext DotReporter unit",
"test-cli": "php -d extension=ext/modules/phalcon.so ./vendor/bin/codecept run --ext DotReporter cli",
"test-integration": "php -d extension=ext/modules/phalcon.so ./vendor/bin/codecept run --ext DotReporter integration",
"test-db-common": "php -d extension=ext/modules/phalcon.so ./vendor/bin/codecept run --ext DotReporter database -g common",
"test-db-mysql": "php -d extension=ext/modules/phalcon.so ./vendor/bin/codecept run --ext DotReporter database --env mysql -g mysql",
"test-db-pgsql": "php -d extension=ext/modules/phalcon.so ./vendor/bin/codecept run --ext DotReporter database --env pgsql -g pgsql",
"test-db-sqlite": "php -d extension=ext/modules/phalcon.so ./vendor/bin/codecept run --ext DotReporter database --env sqlite -g sqlite",
"test-db": [
"@test-db-common",
"@test-db-mysql",
"@test-db-sqlite"
],
"test-all": [
"@test-unit",
"@test-cli",
"@test-integration",
"@test-db"
],
"analyze": "php -d extension=ext/modules/phalcon.so ./vendor/bin/psalm --no-cache",
"clean-build-stubs": [
"./vendor/bin/zephir fullclean",
"Composer\\Config::disableProcessTimeout",
"./vendor/bin/zephir build",
"./vendor/bin/zephir stubs"
]
}
}