54 lines
1.3 KiB
JSON
54 lines
1.3 KiB
JSON
{
|
|
"name": "jorenvanhocht/laravel-share",
|
|
"description": "Optional package for Laravel to generate social share links.",
|
|
"keywords": [
|
|
"laravel",
|
|
"share",
|
|
"social links",
|
|
"social share links"
|
|
],
|
|
"homepage": "https://github.com/jorenvh/laravel-share",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Joren Van Hocht",
|
|
"email": "joren@codeswitch.be",
|
|
"homepage": "https://codeswitch.be",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^7.4|^8.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^9.3",
|
|
"orchestra/testbench": "^6.13|^7.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Jorenvh\\Share\\": "src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Jorenvh\\Share\\Test\\": "tests"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "vendor/bin/phpunit tests"
|
|
},
|
|
"config": {
|
|
"sort-packages": true
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"Jorenvh\\Share\\Providers\\ShareServiceProvider"
|
|
],
|
|
"aliases": {
|
|
"Share": "Jorenvh\\Share\\ShareFacade"
|
|
}
|
|
}
|
|
}
|
|
}
|