-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
43 lines (43 loc) · 1.02 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
{
"name": "joetannenbaum/terminalia",
"description": "Beautiful command line output for Laravel.",
"type": "library",
"require-dev": {
"tightenco/duster": "^2.0",
"pestphp/pest": "^2.6",
"mockery/mockery": "^1.5",
"spatie/ray": "^1.37"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Terminalia\\": "src/",
"Terminalia\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Joe Tannenbaum",
"email": "[email protected]"
}
],
"require": {
"spatie/fork": "^1.1",
"illuminate/collections": "^10.10",
"illuminate/console": "^10.10",
"illuminate/contracts": "^10.10",
"illuminate/support": "^10.10"
},
"extra": {
"laravel": {
"providers": [
"Terminalia\\Providers\\TerminaliaServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}