-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.12 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.12 KB
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": "statix/tailor",
"license": "MIT",
"autoload": {
"psr-4": {
"Statix\\Tailor\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"authors": [
{
"name": "Wyatt Castaneda",
"email": "wyatt.castaneda@gmail.com"
}
],
"scripts": {
"test": "@php ./vendor/bin/pest"
},
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"spatie/laravel-package-tools": "^1.16"
},
"extra": {
"laravel": {
"providers": [
"Statix\\Tailor\\TailorServiceProvider"
],
"aliases": {
"Tailor": "Statix\\Tailor\\Facades\\Tailor"
}
}
},
"require-dev": {
"pestphp/pest": "^3.5",
"orchestra/testbench": "^9.5",
"pestphp/pest-plugin-laravel": "^3.0",
"laravel/pint": "^1.18",
"gehrisandro/tailwind-merge-php": "^1.1"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}