-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 927 Bytes
/
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
{
"name": "tuqqu/go-php",
"description": "Implementation of Go language interpreter written in PHP",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Arthur Kurbidaev",
"email": "artkurbidaev@gmail.com"
}
],
"require": {
"php": "^8.3",
"tuqqu/go-parser": "^0.5.1"
},
"require-dev": {
"symfony/var-dumper": "^7.1",
"friendsofphp/php-cs-fixer": "^3.63",
"phpunit/phpunit": "^10.5",
"vimeo/psalm": "5.20"
},
"bin": [
"bin/go-php"
],
"autoload": {
"psr-4": {
"GoPhp\\": "src/"
},
"files": [
"src/asserts.php",
"src/utils.php",
"src/Debug/utils.php",
"src/GoValue/utils.php"
]
},
"autoload-dev": {
"psr-4": {
"GoPhp\\Tests\\": "src/"
}
}
}