-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.12 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
{
"name": "sageit/phalcon-micro-annotations",
"description": "Sage IT Component for Phalcon - Annotations Parser for annotation routes",
"keywords": [
"framework",
"phalcon",
"micro",
"annotation"
],
"authors": [
{
"name": "Daniel S. Davis",
"email": "daniel.davis@sageitsolutions.net"
}
],
"support": {
"issues": "https://github.com/SageITSolutions/phalcon-micro-annotations/issues",
"source": "https://github.com/SageITSolutions/phalcon-micro-annotations",
"forum": "https://forum.phalconphp.com/",
"docs": "https://docs.phalconphp.com/",
"irc": "irc://irc.freenode.org/phalconphp",
"rss": "https://blog.phalconphp.com/rss",
"email": "daniel.davis@sageitsolutions.net"
},
"license": "MIT",
"require": {
"php": ">=7.0",
"ext-phalcon": "4.* || 5.*"
},
"require-dev": {
"codeception/verify": "*"
},
"autoload": {
"psr-4": {
"Phalcon\\Mvc\\Router\\Annotations\\": "Phalcon/Mvc/Router/Annotations"
}
},
"autoload-dev": {
"psr-4": {
"Phalcon\\Mvc\\Router\\Annotations\\": "Phalcon/Mvc/Router/Annotations"
}
}
}