generated from spatie/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
59 lines (59 loc) · 1.64 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
{
"name": "swiftmade/laravel-plausible-exclude",
"description": "Adds a page to your Laravel app, which allows you to exclude your visits from Plausible analytics.",
"keywords": [
"swiftmade",
"laravel",
"laravel-plausible-exclude"
],
"homepage": "https://github.com/swiftmade/laravel-plausible-exclude",
"license": "MIT",
"authors": [
{
"name": "Swiftmade OÜ",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.4|^8.0",
"illuminate/contracts": "^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.1",
"orchestra/testbench": "5.*|6.*|7.*|8.*|9.*",
"phpunit/phpunit": "^8.4|^9.0|^10.0"
},
"autoload": {
"psr-4": {
"Swiftmade\\Plausible\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Swiftmade\\Plausible\\Tests\\": "tests"
}
},
"scripts": {
"post-autoload-dump": "@php ./vendor/bin/testbench package:discover --ansi",
"test": "vendor/bin/phpunit",
"format": "vendor/bin/php-cs-fixer"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Swiftmade\\Plausible\\PlausibleExcludeServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}