-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
61 lines (61 loc) · 1.56 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
58
59
60
61
{
"name": "sammyjo20/lasso",
"type": "library",
"description": "Lasso - Asset wrangling for Laravel made simple.",
"license": "MIT",
"authors": [
{
"name": "Sam Carré",
"email": "29132017+Sammyjo20@users.noreply.github.com",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-zip": "*",
"illuminate/console": "^10.0 || ^11.0",
"illuminate/filesystem": "^10.0 || ^11.0",
"illuminate/support": "^10.0 || ^11.0",
"symfony/finder": "^6.0 || ^7.0",
"symfony/process": "^6.0 || ^7.0",
"league/flysystem": "^3.0"
},
"require-dev": {
"orchestra/testbench": "^8.0 || ^9.0",
"friendsofphp/php-cs-fixer": "^3.1.0",
"spatie/ray": "^1.33",
"pestphp/pest": "^2.25",
"phpstan/phpstan": "^1.10"
},
"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 --allow-risky=yes"
],
"pstan": [
"./vendor/bin/phpstan analyse"
]
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}