-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.07 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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "phun/phun",
"description": "Seamlessly integrate PHP execution within your JavaScript/TypeScript projects with Phun.",
"keywords": [
"phun",
"php",
"typescript",
"bun",
"templating",
"rendering",
"integration",
"bun-shell",
"php-scripting",
"run",
"serve"
],
"homepage": "https://packagist.org/packages/phun/phun",
"license": "MIT",
"authors": [
{
"name": "Sigui Kessé Emmanuel",
"email": "[email protected]",
"homepage": "https://siguici.deno.dev"
}
],
"support": {
"source": "https://github.com/siguici/phun",
"issues": "https://github.com/siguici/phun/issues"
},
"require": {
"php": "*"
},
"autoload": {
"psr-4": {
"Phun\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phun\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "0.x-dev"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}