-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.1 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.1 KB
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
{
"name": "tysonandre/var_representation_polyfill",
"description": "Polyfill for var_representation: convert a variable to a string in a way that fixes the shortcomings of var_export",
"keywords": ["var_export", "var_representation"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Tyson Andre"
}
],
"config": {
"sort-packages": true,
"platform": {
"php": "7.2.24"
}
},
"require": {
"php": "^7.2.0|^8.0.0",
"ext-tokenizer": "*"
},
"require-dev": {
"phan/phan": "^5.4.1",
"phpunit/phpunit": "^8.5.0"
},
"provide": {
"ext-var_representation": "*"
},
"suggest": {
"ext-var_representation": "For best performance"
},
"autoload": {
"psr-4": {"VarRepresentation\\": "src/VarRepresentation"},
"files": ["src/var_representation.php"]
},
"autoload-dev": {
"psr-4": {"VarRepresentation\\Tests\\": "tests/"}
},
"extra": {
"branch-alias": {
"dev-main": "0.1.3-dev"
}
}
}