-
Notifications
You must be signed in to change notification settings - Fork 91
/
composer.json
39 lines (39 loc) · 1.03 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
{
"name": "jeremeamia/superclosure",
"type": "library",
"description": "Serialize Closure objects, including their context and binding",
"keywords": ["closure", "serialize", "serializable", "function", "parser", "tokenizer", "lambda"],
"homepage": "https://github.com/jeremeamia/super_closure",
"license": "MIT",
"authors": [
{
"name": "Jeremy Lindblom",
"email": "[email protected]",
"homepage": "https://github.com/jeremeamia",
"role": "Developer"
}
],
"require": {
"php": ">=5.4",
"nikic/php-parser": "^1.2|^2.0|^3.0|^4.0",
"symfony/polyfill-php56": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^4.0|^5.0"
},
"autoload": {
"psr-4": {
"SuperClosure\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SuperClosure\\Test\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.4-dev"
}
}
}