mirror of
https://github.com/appwrite/appwrite
synced 2026-05-13 03:59:07 +00:00
Appwrite will refer to the X-Appwrite-Timestamp header for when the request was originally sent and reject the request if the Timestamp is older than the updatedAt timestamp of the document.
97 lines
No EOL
2.8 KiB
JSON
97 lines
No EOL
2.8 KiB
JSON
{
|
|
"name": "appwrite/server-ce",
|
|
"description": "End to end backend server for frontend and mobile apps.",
|
|
"type": "project",
|
|
"license": "BSD-3-Clause",
|
|
"authors": [
|
|
{
|
|
"name": "Eldad Fux",
|
|
"email": "eldad@appwrite.io"
|
|
}
|
|
],
|
|
"scripts": {
|
|
"test": "vendor/bin/phpunit",
|
|
"lint": "vendor/bin/phpcs",
|
|
"format": "vendor/bin/phpcbf"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Appwrite\\": "src/Appwrite",
|
|
"Executor\\": "src/Executor"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\E2E\\": "tests/e2e",
|
|
"Tests\\Unit\\": "tests/unit",
|
|
"Appwrite\\Tests\\": "tests/extensions"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": ">=8.0.0",
|
|
"ext-curl": "*",
|
|
"ext-imagick": "*",
|
|
"ext-mbstring": "*",
|
|
"ext-json": "*",
|
|
"ext-yaml": "*",
|
|
"ext-dom": "*",
|
|
"ext-redis": "*",
|
|
"ext-swoole": "*",
|
|
"ext-pdo": "*",
|
|
"ext-openssl": "*",
|
|
"ext-zlib": "*",
|
|
"ext-sockets": "*",
|
|
"appwrite/php-clamav": "1.1.*",
|
|
"appwrite/php-runtimes": "0.11.*",
|
|
"utopia-php/abuse": "0.19.*",
|
|
"utopia-php/analytics": "0.2.*",
|
|
"utopia-php/audit": "0.21.*",
|
|
"utopia-php/cache": "0.8.*",
|
|
"utopia-php/cli": "0.13.*",
|
|
"utopia-php/config": "0.2.*",
|
|
"utopia-php/database": "0.31.*",
|
|
"utopia-php/preloader": "0.2.*",
|
|
"utopia-php/domains": "1.1.*",
|
|
"utopia-php/framework": "0.26.*",
|
|
"utopia-php/image": "0.5.*",
|
|
"utopia-php/locale": "0.4.*",
|
|
"utopia-php/logger": "0.3.*",
|
|
"utopia-php/messaging": "0.1.*",
|
|
"utopia-php/orchestration": "0.6.*",
|
|
"utopia-php/registry": "0.5.*",
|
|
"utopia-php/storage": "0.13.*",
|
|
"utopia-php/swoole": "0.5.*",
|
|
"utopia-php/websocket": "0.1.*",
|
|
"resque/php-resque": "1.3.6",
|
|
"matomo/device-detector": "6.0.0",
|
|
"dragonmantank/cron-expression": "3.3.1",
|
|
"influxdb/influxdb-php": "1.15.2",
|
|
"phpmailer/phpmailer": "6.6.0",
|
|
"chillerlan/php-qrcode": "4.3.3",
|
|
"adhocore/jwt": "1.1.2",
|
|
"slickdeals/statsd": "3.1.0",
|
|
"webonyx/graphql-php": "14.11.*"
|
|
},
|
|
"repositories": [
|
|
{
|
|
"url": "https://github.com/appwrite/runtimes.git",
|
|
"type": "git"
|
|
}
|
|
],
|
|
"require-dev": {
|
|
"appwrite/sdk-generator": "0.29.*",
|
|
"ext-fileinfo": "*",
|
|
"phpunit/phpunit": "9.5.20",
|
|
"squizlabs/php_codesniffer": "^3.6",
|
|
"swoole/ide-helper": "4.8.9",
|
|
"textalk/websocket": "1.5.7"
|
|
},
|
|
"provide": {
|
|
"ext-phpiredis": "*"
|
|
},
|
|
"config": {
|
|
"platform": {
|
|
"php": "8.0"
|
|
}
|
|
}
|
|
} |