-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
46 lines (46 loc) Β· 1.02 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
{
"name": "rmunate/php2js",
"description": "Effortlessly share PHP Laravel values with external JavaScript files using just one command, thanks to the seamless integration of PHP2JS.",
"keywords": [
"PHP2JS",
"php2js",
"toJS",
"toStrictJS"
],
"homepage": "https://github.com/rmunate/PHP2JS",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Rmunate\\Php2Js\\": "src/"
}
},
"authors": [
{
"name": "Raul Mauricio UΓ±ate Castro",
"email": "[email protected]",
"role": "owner",
"homepage": "https://github.com/rmunate"
}
],
"require": {
"php": "^8.1",
"illuminate/support": "^10.0|^11.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.4|^11.0"
},
"extra": {
"branch-alias": {
"dev-main": "v3.0.x-dev"
},
"laravel": {
"providers": [
"Rmunate\\Php2Js\\Macros\\Php2JsServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}