You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.3 KiB
54 lines
1.3 KiB
5 years ago
|
{
|
||
|
"name": "app-vise/laravel-appstore-server-notifications",
|
||
|
"description": "Handling Appstore server to server notifications",
|
||
|
"keywords": [
|
||
|
"app-vise",
|
||
|
"appvise",
|
||
|
"laravel-appstore-server-to-server-notifications",
|
||
|
"laravel-appstore-server-notifications",
|
||
|
"laravel in app subscriptions",
|
||
|
"laravel-appstore-server-notifications"
|
||
|
],
|
||
|
"license": "MIT",
|
||
|
"authors": [
|
||
|
{
|
||
|
"name": "Daan Geurts",
|
||
|
"email": "[email protected]",
|
||
|
"homepage": "https://www.app-vise.nl",
|
||
|
"role": "Developer"
|
||
|
}
|
||
|
],
|
||
|
"require": {
|
||
|
"php": "^7.2",
|
||
|
"illuminate/support": "~5.7.0|^6.0",
|
||
|
"bensampo/laravel-enum": "^1.0"
|
||
|
},
|
||
|
"require-dev": {
|
||
|
"orchestra/testbench": "~3.8.0|^4.0",
|
||
|
"phpunit/phpunit": "^8.2"
|
||
|
},
|
||
|
"autoload": {
|
||
|
"psr-4": {
|
||
|
"Appvise\\AppStoreNotifications\\": "src"
|
||
|
}
|
||
|
},
|
||
|
"autoload-dev": {
|
||
|
"psr-4": {
|
||
|
"Appvise\\AppStoreNotifications\\Tests\\": "tests"
|
||
|
}
|
||
|
},
|
||
|
"scripts": {
|
||
5 years ago
|
"test": "vendor/bin/phpunit"
|
||
5 years ago
|
},
|
||
|
"config": {
|
||
|
"sort-packages": true
|
||
|
},
|
||
|
"extra": {
|
||
|
"laravel": {
|
||
|
"providers": [
|
||
|
"Appvise\\AppStoreNotifications\\NotificationsServiceProvider"
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
}
|