-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
63 lines (63 loc) · 1.72 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
59
60
61
62
63
{
"name": "kudashevs/laravel-share-buttons",
"description": "A laravel social media share buttons package.",
"keywords": [
"laravel",
"share",
"share buttons",
"social links"
],
"homepage": "https://github.com/kudashevs/laravel-share-buttons",
"license": "MIT",
"authors": [
{
"name": "Sergey Kudashev",
"email": "[email protected]",
"homepage": "https://kudashevs.com",
"role": "Developer"
},
{
"name": "Joren Van Hocht",
"email": "[email protected]",
"homepage": "https://codeswitch.be",
"role": "Creator"
}
],
"require": {
"php": "^7.4|^8.0",
"symfony/polyfill-php80": "^1.31"
},
"require-dev": {
"orchestra/testbench": "^6.27|^7.0|^8.0|^9.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.1|^10.0|^11.0"
},
"autoload": {
"psr-4": {
"Kudashevs\\ShareButtons\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Kudashevs\\ShareButtons\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "vendor/bin/phpunit --no-coverage",
"test-coverage": "vendor/bin/phpunit --coverage-html build/coverage",
"analyze": "phpstan analyze --no-progress --memory-limit=1024M"
},
"extra": {
"laravel": {
"providers": [
"Kudashevs\\ShareButtons\\Providers\\ShareButtonsServiceProvider"
],
"aliases": {
"ShareButtons": "Kudashevs\\ShareButtons\\Facades\\ShareButtonsFacade"
}
}
}
}