-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.15 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
40
41
42
43
44
{
"name": "transprime-research/functions-proxy-linker",
"description": "Link PHP global functions to your class",
"license": "MIT",
"type": "library",
"keywords": [
"PHP",
"Functions",
"Linker",
"Proxy",
"Functional",
"Helpers"
],
"homepage": "https://github.com/transprime-research/functions-proxy-linker",
"support": {
"issues": "https://github.com/transprime-research/functions-proxy-linker/issues",
"source": "https://github.com/transprime-research/functions-proxy-linker"
},
"require": {
"php": ">=7.4",
"nette/php-generator": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "^6.0",
"nikic/php-parser": "^4.13"
},
"autoload": {
"psr-4": {
"Transprime\\FunctionsLinker\\": "src/"
}
},
"authors": [
{
"name": "Oluwatobi Samuel Omisakin",
"email": "[email protected]"
}
],
"autoload-dev": {
"psr-4": {
"Transprime\\FunctionsLinker\\Tests\\": "tests/"
}
}
}