1
0
Fork 0
mirror of synced 2024-06-01 18:39:57 +12:00
appwrite/composer.json

104 lines
3 KiB
JSON
Raw Normal View History

2019-05-09 18:54:39 +12:00
{
2019-07-30 17:38:38 +12:00
"name": "appwrite/server-ce",
2019-05-09 18:54:39 +12:00
"description": "End to end backend server for frontend and mobile apps.",
"type": "project",
2019-06-10 17:29:16 +12:00
"license": "BSD-3-Clause",
2019-05-09 18:54:39 +12:00
"authors": [
{
"name": "Eldad Fux",
"email": "eldad@appwrite.io"
}
],
2022-07-09 03:17:20 +12:00
"scripts": {
"test": "vendor/bin/phpunit",
"lint": "vendor/bin/phpcs",
"format": "vendor/bin/phpcbf"
},
2019-05-09 18:54:39 +12:00
"autoload": {
"psr-4": {
2022-02-04 14:29:40 +13:00
"Appwrite\\": "src/Appwrite",
"Executor\\": "src/Executor"
2019-05-09 18:54:39 +12:00
}
},
2019-09-14 15:41:16 +12:00
"autoload-dev": {
2021-03-22 03:28:03 +13:00
"psr-4": {
"Tests\\E2E\\": "tests/e2e",
2022-08-01 22:22:04 +12:00
"Tests\\Unit\\": "tests/unit",
2021-03-22 03:28:03 +13:00
"Appwrite\\Tests\\": "tests/extensions"
}
2019-09-14 15:41:16 +12:00
},
2019-05-09 18:54:39 +12:00
"require": {
2021-04-27 18:24:19 +12:00
"php": ">=8.0.0",
2019-05-09 18:54:39 +12:00
"ext-curl": "*",
"ext-imagick": "*",
"ext-mbstring": "*",
"ext-json": "*",
2020-05-16 23:28:26 +12:00
"ext-yaml": "*",
2019-05-09 18:54:39 +12:00
"ext-dom": "*",
"ext-redis": "*",
2020-10-25 17:56:03 +13:00
"ext-swoole": "*",
2019-05-09 18:54:39 +12:00
"ext-pdo": "*",
"ext-openssl": "*",
"ext-zlib": "*",
"ext-sockets": "*",
2023-09-14 05:29:58 +12:00
"appwrite/php-runtimes": "0.13.*",
2023-07-23 18:46:23 +12:00
"appwrite/php-clamav": "2.0.*",
2023-10-19 14:26:44 +13:00
"utopia-php/abuse": "0.32.*",
2023-08-05 07:15:32 +12:00
"utopia-php/analytics": "0.10.*",
2023-10-19 14:26:44 +13:00
"utopia-php/audit": "0.34.*",
2022-10-17 06:48:53 +13:00
"utopia-php/cache": "0.8.*",
2023-03-18 05:07:29 +13:00
"utopia-php/cli": "0.15.*",
2020-03-29 01:42:16 +13:00
"utopia-php/config": "0.2.*",
2023-10-19 20:41:06 +13:00
"utopia-php/database": "0.44.*",
2023-08-21 00:29:43 +12:00
"utopia-php/domains": "0.3.*",
2022-11-18 06:21:55 +13:00
"utopia-php/dsn": "0.1.*",
2023-08-31 04:19:18 +12:00
"utopia-php/framework": "0.31.0",
"utopia-php/image": "0.5.*",
2021-07-26 19:05:08 +12:00
"utopia-php/locale": "0.4.*",
"utopia-php/logger": "0.3.*",
2023-10-18 04:12:24 +13:00
"utopia-php/messaging": "0.1.*",
2023-08-31 16:14:34 +12:00
"utopia-php/migration": "0.3.*",
2023-05-30 19:23:03 +12:00
"utopia-php/orchestration": "0.9.*",
2023-10-17 16:44:36 +13:00
"utopia-php/platform": "0.5.*",
2023-05-30 19:23:03 +12:00
"utopia-php/pools": "0.4.*",
2023-02-28 16:48:27 +13:00
"utopia-php/preloader": "0.2.*",
2023-10-17 16:44:36 +13:00
"utopia-php/queue": "0.5.*",
2022-11-16 23:40:41 +13:00
"utopia-php/registry": "0.5.*",
2023-10-12 17:55:30 +13:00
"utopia-php/storage": "0.17.*",
2022-11-14 11:22:47 +13:00
"utopia-php/swoole": "0.5.*",
2023-09-14 07:08:12 +12:00
"utopia-php/vcs": "0.5.*",
2022-10-20 12:10:41 +13:00
"utopia-php/websocket": "0.1.*",
2023-07-23 18:46:23 +12:00
"matomo/device-detector": "6.1.*",
"dragonmantank/cron-expression": "3.3.2",
2023-10-16 06:41:09 +13:00
"influxdb/influxdb-php": "1.15.2",
2023-07-23 18:46:23 +12:00
"phpmailer/phpmailer": "6.8.0",
"chillerlan/php-qrcode": "4.3.4",
"adhocore/jwt": "1.1.2",
"webonyx/graphql-php": "14.11.*",
2023-10-16 06:41:09 +13:00
"slickdeals/statsd": "3.1.0",
2023-08-31 16:14:34 +12:00
"league/csv": "9.7.1"
2019-05-09 18:54:39 +12:00
},
2021-12-14 20:22:10 +13:00
"repositories": [
{
"url": "https://github.com/appwrite/runtimes.git",
"type": "git"
2021-12-14 20:22:10 +13:00
}
],
2019-05-09 18:54:39 +12:00
"require-dev": {
2022-08-09 19:11:30 +12:00
"ext-fileinfo": "*",
2023-09-15 07:11:40 +12:00
"appwrite/sdk-generator": "0.35.*",
2022-04-21 02:55:04 +12:00
"phpunit/phpunit": "9.5.20",
2023-07-25 21:37:05 +12:00
"squizlabs/php_codesniffer": "^3.7",
2023-07-25 21:04:11 +12:00
"swoole/ide-helper": "5.0.2",
2022-06-02 02:39:12 +12:00
"textalk/websocket": "1.5.7"
2019-05-09 18:54:39 +12:00
},
"provide": {
"ext-phpiredis": "*"
},
2019-08-29 07:18:02 +12:00
"config": {
"platform": {
2021-04-09 22:35:44 +12:00
"php": "8.0"
2019-08-29 07:18:02 +12:00
}
}
2023-08-10 05:08:10 +12:00
}