forked from Sammyjo20/lasso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.28 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
{
"name": "sammyjo20/lasso",
"type": "library",
"description": "Lasso - Asset wrangling for Laravel made simple.",
"version": "1.2.6",
"license": "MIT",
"authors": [
{
"name": "Sam Carré",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3 || ~8.0",
"ext-json": "*",
"ext-zip": "*",
"illuminate/console": "^6.0 || ^7.0 || ^8.0",
"illuminate/contracts": "^6.0 || ^7.0 || ^8.0",
"illuminate/filesystem": "^6.0 || ^7.0 || ^8.0",
"illuminate/support": "^6.0 || ^7.0 || ^8.0",
"symfony/finder": "^4.0 || ^5.0",
"symfony/process": "^4.0 || ^5.0"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"orchestra/testbench": "^4.0 || ^5.0 || ^6.0",
"friendsofphp/php-cs-fixer": "^2.16"
},
"extra": {
"laravel": {
"providers": [
"Sammyjo20\\Lasso\\LassoServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"Sammyjo20\\Lasso\\": "src/",
"Sammyjo20\\Lasso\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"format": "vendor/bin/php-cs-fixer fix"
},
"minimum-stability": "stable"
}