1
0
Fork 0
mirror of synced 2024-05-20 20:52:36 +12:00
appwrite/composer.json

75 lines
1.9 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"
}
],
"autoload": {
"psr-4": {
"Appwrite\\": "src/Appwrite"
2019-05-09 18:54:39 +12:00
}
},
2019-09-14 15:41:16 +12:00
"autoload-dev": {
"psr-4": {"Tests\\E2E\\": "tests/e2e"}
},
2019-05-09 18:54:39 +12:00
"require": {
2019-12-31 23:55:54 +13:00
"php": ">=7.4.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": "*",
"ext-pdo": "*",
"ext-openssl": "*",
"ext-zlib": "*",
"ext-sockets": "*",
2019-05-09 19:41:01 +12:00
2020-03-25 17:51:43 +13:00
"appwrite/php-clamav": "1.0.*",
2020-07-09 21:11:10 +12:00
"utopia-php/framework": "0.8.3",
2020-03-25 17:51:43 +13:00
"utopia-php/abuse": "0.2.*",
2020-04-18 10:19:02 +12:00
"utopia-php/audit": "0.3.*",
2020-03-25 17:51:43 +13:00
"utopia-php/cache": "0.2.*",
2020-06-21 00:10:50 +12:00
"utopia-php/cli": "0.6.2",
2020-03-29 01:42:16 +13:00
"utopia-php/config": "0.2.*",
2020-06-30 09:39:16 +12:00
"utopia-php/locale": "0.3.*",
2020-03-25 17:51:43 +13:00
"utopia-php/registry": "0.2.*",
"utopia-php/domains": "0.2.*",
2019-05-09 18:54:39 +12:00
2020-06-18 08:18:57 +12:00
"resque/php-resque": "1.3.6",
2019-05-09 18:54:39 +12:00
"geoip2/geoip2": "2.9.0",
"piwik/device-detector": "3.5.1",
"dragonmantank/cron-expression": "2.2.0",
"domnikl/statsd": "2.0.*",
2019-08-07 19:35:24 +12:00
"influxdb/influxdb-php": "1.15.*",
2019-05-09 18:54:39 +12:00
"bacon/bacon-qr-code": "2.0.0",
2020-05-28 07:12:37 +12:00
"phpmailer/phpmailer": "6.1.6"
2019-05-09 18:54:39 +12:00
},
"require-dev": {
2020-06-26 21:54:37 +12:00
"swoole/ide-helper": "4.5.2",
"appwrite/sdk-generator": "master",
2019-05-09 18:54:39 +12:00
"phpunit/phpunit": "^7.0"
},
2019-09-20 18:33:24 +12:00
"repositories": [
{
"type": "git",
"url": "https://github.com/appwrite/sdk-generator"
}
],
2019-05-09 18:54:39 +12:00
"provide": {
"ext-phpiredis": "*"
},
2019-08-29 07:18:02 +12:00
"minimum-stability": "dev",
"config": {
"platform": {
2019-12-31 23:55:54 +13:00
"php": "7.4"
2019-08-29 07:18:02 +12:00
}
}
2019-05-09 18:54:39 +12:00
}