-
Notifications
You must be signed in to change notification settings - Fork 614
Expand file tree
/
Copy pathcomposer.json
More file actions
78 lines (78 loc) · 2.41 KB
/
composer.json
File metadata and controls
78 lines (78 loc) · 2.41 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
{
"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",
"dev"
],
"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"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"require": {
"php": "^7.4||~8.0||~8.1||~8.2",
"ext-pdo": "*",
"ext-phalcon": "^5.0.0",
"psy/psysh": "~0.9",
"nikic/php-parser": "^4.2.4",
"phalcon/migrations": "^3.0",
"vlucas/phpdotenv": "^3.6|^4.0|^5.0"
},
"require-dev": {
"humbug/box": "^3.11",
"codeception/codeception": "^4.1",
"phpdocumentor/reflection-docblock": "^5.2",
"phpunit/phpunit": "^9.0",
"codeception/specify": "^1.2",
"codeception/verify": "^1.2",
"squizlabs/php_codesniffer": "^3.7",
"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"
]
}