-
Notifications
You must be signed in to change notification settings - Fork 631
/
composer.json
66 lines (66 loc) · 2.27 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "phalcon/devtools",
"type": "library",
"description": "This tools provide you useful scripts to generate code helping to develop faster and easy applications that use with Phalcon framework.",
"keywords": ["framework", "phalcon", "devtools", "webtools", "phar"],
"homepage": "https://phalcon.io",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Phalcon Team",
"email": "team@phalcon.io",
"homepage": "https://phalcon.io/en/team"
},
{
"name": "Contributors",
"homepage": "https://github.com/phalcon/phalcon-devtools/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/phalcon/phalcon-devtools/issues",
"source": "https://github.com/phalcon/phalcon-devtools",
"forum": "https://forum.phalcon.io"
},
"require": {
"php": ">=7.2",
"ext-pdo": "*",
"ext-phalcon": "^4.0.0",
"psy/psysh": "~0.9",
"nikic/php-parser": "^4.2.4",
"phalcon/migrations": "^2.0",
"vlucas/phpdotenv": "^3.6|^4.0|^5.0"
},
"require-dev": {
"humbug/box": "^3.8",
"codeception/codeception": "^4.1",
"phpdocumentor/reflection-docblock": "^4.3",
"phpunit/phpunit": "^8.0",
"codeception/specify": "^1.2",
"codeception/verify": "^1.2",
"squizlabs/php_codesniffer": "^3.5",
"phalcon/ide-stubs": "^4.0.0",
"vimeo/psalm": "^4.6",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-filesystem": "^1.0",
"codeception/module-asserts": "^1.3",
"codeception/module-cli": "^1.0"
},
"autoload": {
"psr-4" : {
"Phalcon\\DevTools\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phalcon\\DevTools\\Tests\\Acceptance\\": "tests/acceptance/",
"Phalcon\\DevTools\\Tests\\Console\\": "tests/console/",
"Phalcon\\DevTools\\Tests\\Functional\\": "tests/functional/",
"Phalcon\\DevTools\\Tests\\Unit\\": "tests/unit/",
"Phalcon\\DevTools\\Tests\\Support\\Module\\": "tests/_support/Module"
},
"files": [
"tests/_support/helpers.php"
]
},
"bin": ["phalcon"]
}