This repository has been archived by the owner on Mar 18, 2024. It is now read-only.
generated from spatie/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
68 lines (68 loc) · 1.78 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
64
65
66
67
68
{
"name": "samuelmwangiw/linode",
"description": "A Simple Linode client built for Laravel with @JustSteveKing laravel-transporter package",
"keywords": [
"SamuelMwangiW",
"laravel",
"linode"
],
"homepage": "https://github.com/samuelmwangiw/linode",
"license": "MIT",
"authors": [
{
"name": "Samuel Mwangi",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.2",
"illuminate/contracts": "^10.0",
"saloonphp/laravel-plugin": "^3.0",
"spatie/laravel-package-tools": "^1.14.0"
},
"require-dev": {
"larastan/larastan": "^2.8",
"laravel/pint": "^1.2",
"nunomaduro/collision": "^7.9",
"orchestra/testbench": "^8.0",
"pestphp/pest": "^2.0",
"pestphp/pest-plugin-laravel": "^2.0"
},
"autoload": {
"psr-4": {
"SamuelMwangiW\\Linode\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"SamuelMwangiW\\Linode\\Tests\\": "tests"
}
},
"scripts": {
"test": "./vendor/bin/pest --no-coverage",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"SamuelMwangiW\\Linode\\LinodeServiceProvider"
],
"aliases": {
"Linode": "SamuelMwangiW\\Linode\\Facades\\Linode"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}