forked from Sammyjo20/lasso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.4 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
56
57
{
"name": "sammyjo20/lasso",
"type": "library",
"description": "Lasso - Asset wrangling for Laravel made simple.",
"license": "MIT",
"authors": [
{
"name": "Sam Carré",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-zip": "*",
"illuminate/console": "^9.0 || ^10.0",
"illuminate/filesystem": "^9.0 || ^10.0",
"illuminate/support": "^9.0 || ^10.0",
"symfony/finder": "^6.0",
"symfony/process": "^6.0",
"league/flysystem": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"orchestra/testbench": "^7.0 || ^8.0",
"friendsofphp/php-cs-fixer": "^3.1.0",
"spatie/ray": "^1.33",
"pestphp/pest": "^1.21"
},
"extra": {
"laravel": {
"providers": [
"Sammyjo20\\Lasso\\LassoServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"Sammyjo20\\Lasso\\": "src/",
"Sammyjo20\\Lasso\\Tests\\": "tests"
}
},
"scripts": {
"test": [
"./vendor/bin/pest"
],
"fix-code": [
"./vendor/bin/php-cs-fixer fix"
]
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}