forked from eloquent/pops
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.49 KB
/
Copy pathcomposer.json
File metadata and controls
56 lines (56 loc) · 1.49 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
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "vedavith/pops-fork",
"description": "Maintained fork of eloquent/pops, a PHP object proxy system.",
"keywords": ["object", "proxy", "method", "property"],
"homepage": "https://github.com/vedavith/pops-fork",
"license": "MIT",
"support": {
"issues": "https://github.com/vedavith/pops-fork/issues",
"source": "https://github.com/vedavith/pops-fork"
},
"replace": {
"eloquent/pops": "self.version"
},
"authors": [
{
"name": "Erin Millard",
"email": "ezzatron@gmail.com",
"homepage": "http://ezzatron.com/"
},
{
"name": "Vedavith Ravula",
"email": "veda_ravula@outlook.com"
}
],
"require": {
"php": "^8.2"
},
"require-dev": {
"eloquent/code-style": "^2",
"errors/exceptions": "^0.2",
"friendsofphp/php-cs-fixer": "^3",
"phpunit/phpunit": "^11.3 || ^12",
"ext-mbstring": "*",
"phpunit/php-code-coverage": "^11 || ^12"
},
"autoload": {
"psr-4": {
"Eloquent\\Pops\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Eloquent\\Pops\\": ["test/src"],
"OutputEscaper\\": ["test/src/OutputEscaper"]
},
"files": [
"test/src/Confusion.php",
"test/src/UppercaseProxyObject.php"
]
},
"extra": {
"branch-alias": {
"dev-main": "5.0.x-dev"
}
}
}