appwrite/composer.json

102 lines
3 KiB
JSON
Raw Normal View History

2019-05-09 06:54:39 +00:00
{
2024-01-18 07:07:39 +00:00
2019-07-30 05:38:38 +00:00
"name": "appwrite/server-ce",
2019-05-09 06:54:39 +00:00
"description": "End to end backend server for frontend and mobile apps.",
"type": "project",
2019-06-10 05:29:16 +00:00
"license": "BSD-3-Clause",
2019-05-09 06:54:39 +00:00
"authors": [
{
"name": "Eldad Fux",
"email": "eldad@appwrite.io"
}
],
2022-07-08 15:17:20 +00:00
"scripts": {
"test": "vendor/bin/phpunit",
2024-03-06 17:33:32 +00:00
"lint": "vendor/bin/pint --test",
2024-08-20 08:47:50 +00:00
"format": "vendor/bin/pint",
"bench": "vendor/bin/phpbench run --report=benchmark"
2022-07-08 15:17:20 +00:00
},
2019-05-09 06:54:39 +00:00
"autoload": {
"psr-4": {
2022-02-04 01:29:40 +00:00
"Appwrite\\": "src/Appwrite",
"Executor\\": "src/Executor"
2019-05-09 06:54:39 +00:00
}
},
2019-09-14 03:41:16 +00:00
"autoload-dev": {
2021-03-21 14:28:03 +00:00
"psr-4": {
"Tests\\E2E\\": "tests/e2e",
2022-08-01 10:22:04 +00:00
"Tests\\Unit\\": "tests/unit",
2021-03-21 14:28:03 +00:00
"Appwrite\\Tests\\": "tests/extensions"
}
2019-09-14 03:41:16 +00:00
},
2019-05-09 06:54:39 +00:00
"require": {
2021-04-27 06:24:19 +00:00
"php": ">=8.0.0",
2019-05-09 06:54:39 +00:00
"ext-curl": "*",
"ext-imagick": "*",
"ext-mbstring": "*",
"ext-json": "*",
2020-05-16 11:28:26 +00:00
"ext-yaml": "*",
2019-05-09 06:54:39 +00:00
"ext-dom": "*",
"ext-redis": "*",
2020-10-25 04:56:03 +00:00
"ext-swoole": "*",
2019-05-09 06:54:39 +00:00
"ext-pdo": "*",
"ext-openssl": "*",
"ext-zlib": "*",
"ext-sockets": "*",
2024-10-08 14:20:04 +00:00
"appwrite/php-runtimes": "0.16.*",
2023-07-23 06:46:23 +00:00
"appwrite/php-clamav": "2.0.*",
2024-08-30 09:22:17 +00:00
"utopia-php/abuse": "0.43.0",
2023-08-04 19:15:32 +00:00
"utopia-php/analytics": "0.10.*",
2024-08-30 09:22:17 +00:00
"utopia-php/audit": "0.43.0",
"utopia-php/cache": "0.11.*",
2023-03-17 16:07:29 +00:00
"utopia-php/cli": "0.15.*",
2020-03-28 12:42:16 +00:00
"utopia-php/config": "0.2.*",
2024-11-09 10:34:56 +00:00
"utopia-php/database": "0.53.16",
"utopia-php/domains": "0.5.*",
2024-05-07 02:03:06 +00:00
"utopia-php/dsn": "0.2.1",
"utopia-php/framework": "0.33.*",
2024-03-18 12:07:14 +00:00
"utopia-php/fetch": "0.2.*",
2024-10-02 06:02:10 +00:00
"utopia-php/image": "0.7.*",
2021-07-26 07:05:08 +00:00
"utopia-php/locale": "0.4.*",
2024-09-02 11:20:02 +00:00
"utopia-php/logger": "0.6.*",
"utopia-php/messaging": "0.12.*",
2024-09-24 09:58:09 +00:00
"utopia-php/migration": "0.6.*",
2023-05-30 07:23:03 +00:00
"utopia-php/orchestration": "0.9.*",
2024-06-16 06:52:53 +00:00
"utopia-php/platform": "0.7.*",
2024-04-19 11:14:00 +00:00
"utopia-php/pools": "0.5.*",
2023-02-28 03:48:27 +00:00
"utopia-php/preloader": "0.2.*",
"utopia-php/queue": "0.7.*",
"utopia-php/registry": "0.5.*",
2023-10-25 00:55:32 +00:00
"utopia-php/storage": "0.18.*",
2024-02-02 07:20:27 +00:00
"utopia-php/swoole": "0.8.*",
"utopia-php/system": "0.9.*",
2024-07-30 07:51:57 +00:00
"utopia-php/vcs": "0.8.*",
2022-10-19 23:10:41 +00:00
"utopia-php/websocket": "0.1.*",
2023-07-23 06:46:23 +00:00
"matomo/device-detector": "6.1.*",
"dragonmantank/cron-expression": "3.3.2",
2024-02-19 07:58:27 +00:00
"phpmailer/phpmailer": "6.9.1",
2023-07-23 06:46:23 +00:00
"chillerlan/php-qrcode": "4.3.4",
"adhocore/jwt": "1.1.2",
"spomky-labs/otphp": "^10.0",
"webonyx/graphql-php": "14.11.*",
2024-02-12 01:18:19 +00:00
"league/csv": "9.14.*"
2019-05-09 06:54:39 +00:00
},
"require-dev": {
2022-08-09 07:11:30 +00:00
"ext-fileinfo": "*",
2024-08-28 10:27:00 +00:00
"appwrite/sdk-generator": "0.39.*",
2022-04-20 14:55:04 +00:00
"phpunit/phpunit": "9.5.20",
2024-05-06 09:19:56 +00:00
"swoole/ide-helper": "5.1.2",
2024-01-09 14:44:58 +00:00
"textalk/websocket": "1.5.7",
2024-08-20 08:47:50 +00:00
"laravel/pint": "^1.14",
"phpbench/phpbench": "^1.2"
2019-05-09 06:54:39 +00:00
},
"provide": {
"ext-phpiredis": "*"
},
2019-08-28 19:18:02 +00:00
"config": {
"platform": {
2024-03-08 09:58:46 +00:00
"php": "8.3"
2019-08-28 19:18:02 +00:00
}
}
2023-08-09 17:08:10 +00:00
}