-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.31 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
{
"name": "kazemmdev/snapshot",
"description": "Snapshot cloud manager",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Kazem Mirzaei",
"email": "[email protected]",
"homepage": "https://kazemm.dev",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "7.9.x-dev",
"illuminate/console": "^10.2",
"illuminate/http": "*",
"illuminate/support": "^10.2",
"kazemmdev/http-status": "dev-main"
},
"require-dev": {
"mockery/mockery": "1.7.x-dev",
"orchestra/testbench": "8.x-dev",
"pestphp/pest": "2.x-dev"
},
"autoload": {
"psr-4": {
"Kazemmdev\\Snapshot\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kazemmdev\\Tests\\Snapshot\\": "tests/"
}
},
"minimum-stability": "dev",
"scripts": {
"test": "./vendor/bin/pest",
"test-coverage": "./vendor/bin/pest --coverage"
},
"scripts-descriptions": {
"test": "Run pestPHP test suite",
"test-coverage": "Run pestPHP test suite with coverage report"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Kazemmdev\\Snapshot\\SnapshotServiceProvider"
]
}
}
}