-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.23 KB
/
Copy pathcomposer.json
File metadata and controls
54 lines (54 loc) · 1.23 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
{
"name": "xphp-lang/xphp",
"description": "Parse xphp files and convert them into php files",
"type": "library",
"keywords": [
"xphp",
"php",
"generics",
"transpiler",
"monomorphization",
"type-system"
],
"homepage": "https://github.com/xphp-lang/xphp",
"license": "MIT",
"authors": [
{
"name": "Matheus Martins",
"email": "math3usmartins@github.com"
}
],
"support": {
"issues": "https://github.com/xphp-lang/xphp/issues",
"source": "https://github.com/xphp-lang/xphp"
},
"require": {
"php": "^8.4.0",
"nikic/php-parser": "^5.7",
"symfony/console": "^8.0"
},
"require-dev": {
"phpunit/phpunit": "^13.0",
"infection/infection": "^0.33",
"phpstan/phpstan": "^2.2"
},
"autoload": {
"psr-4": {
"XPHP\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"XPHP\\": "test/",
"XPHP\\TestSupport\\": "test/TestSupport/"
}
},
"bin": [
"bin/xphp"
],
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}