forked from prodeveloper/social-share
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.12 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
{
"name": "chencha/share",
"description": "Share links with Laravel 5/6/7/8",
"keywords": [
"share",
"laravel",
"laravel5",
"laravel6",
"laravel7",
"laravel8"
],
"version": "5.6.0",
"license": "MIT",
"authors": [
{
"name": "thujohn",
"email": "[email protected]"
},
{
"name": "chencha",
"email": "[email protected]"
},
{
"name": "datashaman",
"email": "[email protected]"
},
{
"name": "Ankit",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"illuminate/support": ">=8.0"
},
"autoload": {
"psr-4": {
"Chencha\\Share\\" : "src/",
"Tests\\": "tests/TestCase.php"
}
},
"extra": {
"laravel": {
"providers": [
"Chencha\\Share\\Chencha\\Share\\ShareServiceProvider"
],
"aliases": {
"Share": "Chencha\\Share\\Chencha\\Share\\ShareFacade"
}
}
},
"minimum-stability": "dev",
"require-dev": {
"orchestra/testbench": "~6.23.0",
"mockery/mockery": "^1.4.4",
"guzzlehttp/guzzle": ">=7.0.1"
}
}