forked from sapsaldog/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
74 lines (68 loc) · 1.75 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
67
68
69
70
71
72
73
74
{
"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",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/sapsaldog/parser-reflection"
}
],
"require": {
"doctrine/annotations": "^1.11.1",
"doctrine/cache": "^1.10",
"goaop/parser-reflection": "dev-master",
"jakubledl/dissect": "~1.0",
"laminas/laminas-code": "^4.0",
"symfony/finder": "*"
},
"require-dev": {
"adlawson/vfs": "^0.12.1",
"doctrine/orm": "^2.5",
"phpstan/phpstan": "^0.12.64",
"phpunit/phpunit": "^9.5",
"symfony/console": "^4.4|^5.1",
"symfony/filesystem": "^4.4|^5.1",
"symfony/process": "^4.4|^5.1",
"webmozart/glob": "^4.1"
},
"suggest": {
"symfony/console": "Enables the usage of the command-line tool."
},
"bin": ["bin/aspect"],
"authors": [
{
"name": "Lisachenko Alexander",
"homepage": "https://github.com/lisachenko"
}
],
"autoload": {
"psr-4": {
"Go\\": "src/"
}
},
"autoload-dev": {
"psr-0": {
"Demo\\": "demos/"
},
"psr-4": {
"Go\\": "tests/Go/",
"Go\\Tests\\TestProject\\": "tests/Fixtures/project/src/"
},
"files": [
"tests/functions.php"
]
},
"minimum-stability": "stable",
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"config": {
"sort-packages": true
}
}