-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
45 lines (45 loc) · 1.03 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
{
"name": "stillat/dagger",
"license": "MIT",
"autoload": {
"psr-4": {
"Stillat\\Dagger\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Stillat\\Dagger\\Tests\\": "tests"
}
},
"require": {
"laravel/framework": "^11.9",
"stillat/blade-parser": "^1.10.3",
"nikic/php-parser": "^5",
"symfony/var-exporter": "^6.0"
},
"require-dev": {
"orchestra/testbench": "^9.0",
"brianium/paratest": "*",
"pestphp/pest": "^2",
"laravel/pint": "^1.13",
"spatie/laravel-ray": "^1.38"
},
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": true,
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Stillat\\Dagger\\ServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}