-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 1.06 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
{
"name": "aza/phpgen",
"description": "AzaPhpGen - Anizoptera CMF PHP code generation (dump) component. Allows to dump complex arrays, objects, closures and basic data types as php code. In part, this can be called a some sort of serialization. You can customize your dumped php code as you wish.",
"keywords": [
"php", "code", "dump", "generation", "serialization"
],
"homepage": "https://github.com/Anizoptera/AzaPhpGen",
"license": "MIT",
"support": {
"issues": "https://github.com/Anizoptera/AzaPhpGen/issues"
},
"authors": [
{"name": "Amal Samally", "email": "[email protected]", "homepage": "https://github.com/amal"},
{"name": "AzaGroup Members"}
],
"require": {
"php": ">=5.3.3"
},
"suggest": {
"ext-reflection": "Used for closure support",
"ext-spl": "Used for closure support",
"aza/benchmark": "Used in benchmark tests"
},
"autoload": {
"psr-0": {
"Aza\\Components\\PhpGen": ""
}
},
"target-dir": "Aza/Components/PhpGen",
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"minimum-stability": "dev"
}