-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
49 lines (49 loc) · 1.33 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "adhocore/phalcon-ext",
"description": "Miscellaneous phalcon adapters, extensions and utilities",
"type": "library",
"keywords": [
"php", "phalcon", "phalcon-adapters", "phalcon-extensions",
"swiftmailer", "twig", "cors", "cache", "request-throttle",
"middleware", "di", "logger", "opcache-primer", "validation",
"phalcon-argv-parser", "phalcon-tasks", "phalcon-cli"
],
"license": "MIT",
"authors": [
{
"name": "Jitendra Adhikari",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"PhalconExt\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhalconExt\\Test\\": "tests/"
}
},
"require": {
"php": ">=7.0",
"adhocore/jwt": "^1.0",
"adhocore/cli": "^0.8.1",
"adhocore/cron-expr": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^6.5 || ^7.5",
"swiftmailer/swiftmailer": "^6.0.0",
"twig/twig": "^1.3 || ^2.4"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
}
},
"scripts": {
"test": "phpunit",
"test:cov": "phpunit --coverage-text --coverage-clover coverage.xml --coverage-html vendor/cov"
}
}