-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
35 lines (35 loc) · 998 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"config": {
"vendor-dir": "app/vendor",
"bin-dir": "app/vendor/bin"
},
"require": {
"ext-phalcon": "^3.4",
"ext-pdo": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-redis": "*",
"ext-mongodb": "*",
"ramsey/uuid": "3.8.0",
"phalcon/incubator": "^3.4",
"netresearch/jsonmapper": "^1.4",
"php-amqplib/php-amqplib": "^2.8",
"ethanhann/redisearch-php": "^1.3",
"sidroberts/phalcon-authmiddleware": "^2.0",
"firebase/php-jwt": "^5.0",
"webonyx/graphql-php": "^0.13.5",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^7.3",
"phalcon/devtools": "~3.4"
},
"scripts": {
"pre-install-cmd": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"pre-update-cmd": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
}
}