forked from goaop/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (36 loc) · 943 Bytes
/
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": "goaop/framework",
"description": "Framework for aspect-oriented programming in PHP.",
"type": "library",
"keywords": ["library", "aop", "php", "aspect"],
"homepage": "http://go.aopphp.com/",
"license": "MIT",
"require": {
"php": ">=5.6.0",
"jakubledl/dissect": "~1.0",
"doctrine/annotations": "~1.0",
"goaop/parser-reflection": "^1.0"
},
"require-dev": {
"symfony/console": "^2.7|^3.0"
},
"suggest": {
"symfony/console": "Enables the usage of the command-line tool."
},
"bin": ["bin/warmup"],
"authors": [
{
"name": "Lisachenko Alexander",
"homepage": "https://github.com/lisachenko"
}
],
"autoload": {
"psr-4": {"Go\\": "src/"}
},
"minimum-stability": "stable",
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}