-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
42 lines (42 loc) · 1.1 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
{
"name": "phalcon/dd",
"type": "library",
"description": "This package will add the `dd` and `dump` helpers to your Phalcon application.",
"keywords": [
"dd",
"dump",
"phalcon",
"utils",
"debug",
"vardumper"
],
"homepage": "https://github.com/phalcon/dd",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Phalcon Team",
"email": "[email protected]",
"homepage": "http://phalcon.io/en/team"
},
{
"name": "Contributors",
"homepage": "https://github.com/phalcon/dd/graphs/contributors"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-phalcon": "^5.0"
},
"autoload": {
"files": [
"src/helper.php"
]
},
"support": {
"issues": "https://github.com/phalcon/dd/issues",
"forum": "https://github.com/phalcon/cphalcon/discussions/",
"source": "https://github.com/phalcon/dd",
"docs": "https://docs.phalcon.io/",
"rss": "https://blog.phalcon.io/rss"
}
}