-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.78 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.78 KB
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": "brainstud/laravel-deployment-scripts",
"description": "Create one time deployment scripts to run at the next release",
"keywords": [
"brainstud",
"laravel",
"laravel-deployment-scripts"
],
"homepage": "https://github.com/brainstud/laravel-deployment-scripts",
"license": "MIT",
"authors": [],
"require": {
"php": "^8.5",
"illuminate/contracts": "^12.0||^13.0",
"illuminate/database": "^12.0||^13.0",
"spatie/laravel-package-tools": "^1.9.2"
},
"require-dev": {
"nunomaduro/collision": "^8.9",
"orchestra/testbench": "^10.0 || ^11.0",
"phpunit/phpunit": "^11.0",
"spatie/laravel-ray": "^1.26"
},
"autoload": {
"psr-4": {
"Brainstud\\LaravelDeploymentScripts\\": "src",
"Brainstud\\LaravelDeploymentScripts\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"Brainstud\\LaravelDeploymentScripts\\Tests\\": "tests"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Brainstud\\LaravelDeploymentScripts\\LaravelDeploymentScriptsServiceProvider"
],
"aliases": {
"LaravelDeploymentScripts": "Brainstud\\LaravelDeploymentScripts\\Facades\\LaravelDeploymentScripts"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}