-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.2 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
{
"name": "putyourlightson/laravel-datastar",
"description": "A reactive hypermedia framework for Laravel.",
"version": "1.0.0-beta.1",
"type": "library",
"license": "mit",
"require": {
"php": "^8.2",
"laravel/framework": "^11.0",
"starfederation/datastar-php": "1.0.0-beta.6"
},
"require-dev": {
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main",
"pestphp/pest": "^3.0"
},
"autoload": {
"psr-4": {
"Putyourlightson\\Datastar\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"extra": {
"laravel": {
"providers": [
"Putyourlightson\\Datastar\\DatastarServiceProvider"
]
}
},
"scripts": {
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix",
"phpstan": "phpstan --memory-limit=1G",
"test": "vendor/bin/pest"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
},
"optimize-autoloader": true,
"sort-packages": true
},
"support": {
"docs": "https://github.com/putyourlightson/laravel-datastar",
"source": "https://github.com/putyourlightson/laravel-datastar",
"issues": "https://github.com/putyourlightson/laravel-datastar/issues"
}
}