-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
41 lines (41 loc) · 1010 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
{
"name": "appserver-io/doppelgaenger",
"description": "Make PHP structure definition clones which look the same but behave differently",
"keywords": [
"remote proxy",
"twin",
"doppelgaenger",
"proxy",
"remote method call",
"AOP",
"aspect oriented"
],
"license": "OSL-3.0",
"authors": [
{
"name": "Bernhard Wick",
"email": "[email protected]",
"homepage": "https://github.com/wick-ed",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0",
"herrera-io/annotations": "~1.0",
"appserver-io-psr/mop": "~2.0"
},
"require-dev": {
"appserver-io/build": "~1.0",
"respect/validation": "0.8.*"
},
"autoload": {
"psr-4": {
"AppserverIo\\Doppelgaenger\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"AppserverIo\\Doppelgaenger\\" : "tests/"
}
}
}