generated from zingimmick/package-skeleton-laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.48 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
{
"name": "laravel-interaction/clap",
"description": "User clap/unclap behaviour for Laravel.",
"keywords": ["laravel", "applause", "clap"],
"license": "MIT",
"homepage": "https://github.com/laravel-interaction/clap",
"support": {
"issues": "https://github.com/laravel-interaction/clap/issues",
"source": "https://github.com/laravel-interaction/clap"
},
"authors": [
{
"name": "zingimmick",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true,
"preferred-install": "dist"
},
"require": {
"php": "^8.0",
"illuminate/database": "^8.13 || ^9.0 || ^10.0",
"illuminate/support": "^8.0 || ^9.0 || ^10.0",
"laravel-interaction/support": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"mockery/mockery": "~1.3.3 || ^1.4.2",
"orchestra/testbench": "^6.0 || ^7.0 || ^8.0",
"phpunit/phpunit": "^9.3.3 || ^10.0"
},
"autoload": {
"psr-4": {
"LaravelInteraction\\Clap\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"LaravelInteraction\\Clap\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
},
"laravel": {
"providers": [
"LaravelInteraction\\Clap\\ClapServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}