appwrite/composer.json

113 lines
3.4 KiB
JSON
Raw Normal View History

2019-05-09 06:54: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",
2025-07-27 05:09:50 +00:00
"lint": "vendor/bin/pint --test --config pint.json",
"format": "vendor/bin/pint --config pint.json",
2025-02-11 13:26:49 +00:00
"bench": "vendor/bin/phpbench run --report=benchmark",
"check": "./vendor/bin/phpstan analyse -c phpstan.neon"
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": {
2025-03-05 02:09:06 +00:00
"php": ">=8.3.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": "*",
2026-01-29 11:02:49 +00:00
"ext-swoole": "6.*",
2019-05-09 06:54:39 +00:00
"ext-pdo": "*",
"ext-openssl": "*",
"ext-zlib": "*",
"ext-sockets": "*",
2025-03-25 22:38:44 +00:00
"appwrite/php-runtimes": "0.19.*",
2023-07-23 06:46:23 +00:00
"appwrite/php-clamav": "2.0.*",
"utopia-php/abuse": "1.2.*",
"utopia-php/analytics": "0.15.*",
"utopia-php/audit": "2.2.*",
2025-11-03 09:13:08 +00:00
"utopia-php/auth": "0.5.*",
"utopia-php/cache": "1.0.*",
"utopia-php/cli": "0.22.*",
"utopia-php/config": "1.*",
"utopia-php/console": "0.1.*",
"utopia-php/database": "5.*",
"utopia-php/detector": "0.2.*",
"utopia-php/domains": "1.*",
"utopia-php/emails": "0.6.*",
"utopia-php/dns": "1.6.*",
2024-05-07 02:03:06 +00:00
"utopia-php/dsn": "0.2.1",
2026-02-04 05:14:18 +00:00
"utopia-php/framework": "0.33.*",
"utopia-php/fetch": "0.5.*",
2025-02-20 14:32:34 +00:00
"utopia-php/image": "0.8.*",
2025-08-12 13:13:08 +00:00
"utopia-php/locale": "0.8.*",
2024-09-02 11:20:02 +00:00
"utopia-php/logger": "0.6.*",
2025-10-23 13:36:11 +00:00
"utopia-php/messaging": "0.20.*",
"utopia-php/migration": "1.5.*",
2025-03-13 13:02:32 +00:00
"utopia-php/platform": "0.7.*",
2026-01-29 09:04:20 +00:00
"utopia-php/pools": "1.*",
"utopia-php/span": "1.1.*",
2023-02-28 03:48:27 +00:00
"utopia-php/preloader": "0.2.*",
2026-02-04 08:51:52 +00:00
"utopia-php/queue": "0.15.*",
"utopia-php/registry": "0.5.*",
2023-10-25 00:55:32 +00:00
"utopia-php/storage": "0.18.*",
2026-02-06 10:13:59 +00:00
"utopia-php/system": "0.10.*",
2026-02-04 04:58:16 +00:00
"utopia-php/telemetry": "0.2.*",
"utopia-php/vcs": "1.*",
"utopia-php/websocket": "1.0.*",
2025-08-15 07:49:52 +00:00
"matomo/device-detector": "6.4.*",
"dragonmantank/cron-expression": "3.4.*",
2025-05-29 05:33:26 +00:00
"phpmailer/phpmailer": "6.9.*",
2025-08-15 07:49:52 +00:00
"chillerlan/php-qrcode": "4.4.*",
2025-05-29 05:33:26 +00:00
"adhocore/jwt": "1.1.*",
"spomky-labs/otphp": "^11.4.2",
"webonyx/graphql-php": "14.11.*",
2025-08-15 07:49:52 +00:00
"league/csv": "9.24.*",
2025-08-13 10:11:16 +00:00
"enshrined/svg-sanitize": "0.22.*"
2019-05-09 06:54:39 +00:00
},
"require-dev": {
2022-08-09 07:11:30 +00:00
"ext-fileinfo": "*",
2025-08-15 07:49:52 +00:00
"appwrite/sdk-generator": "*",
2025-02-25 02:57:04 +00:00
"phpunit/phpunit": "9.*",
2026-01-27 13:46:57 +00:00
"swoole/ide-helper": "6.*",
"phpstan/phpstan": "1.12.*",
2025-02-25 02:57:04 +00:00
"textalk/websocket": "1.5.*",
"laravel/pint": "1.*",
"phpbench/phpbench": "1.*"
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"
},
"allow-plugins": {
"php-http/discovery": true,
"tbachert/spi": true
2019-08-28 19:18:02 +00:00
}
2025-11-04 11:49:42 +00:00
}
2023-08-09 17:08:10 +00:00
}