-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
56 lines (56 loc) · 1.16 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
{
"name": ":vendor_slug/:package_slug",
"description": ":package_description",
"keywords": [
":vendor_name",
"spiral",
":package_slug"
],
"homepage": "https://github.com/:vendor_slug/:package_slug",
"license": "MIT",
"authors": [
{
"name": ":author_name",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"spiral/boot": "^3.7",
"spiral/console": "^3.7"
},
"require-dev": {
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^10.1",
"spiral/testing": "^2.0",
"vimeo/psalm": "^5.9"
},
"autoload": {
"psr-4": {
"VendorName\\Skeleton\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"VendorName\\Skeleton\\Tests\\App\\": "tests/app",
"VendorName\\Skeleton\\Tests\\": "tests/src"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"psalm": "vendor/bin/psalm --config=psalm.xml ./src"
},
"config": {
"sort-packages": true
},
"extra": {
"spiral": {
"bootloaders": [
"VendorName\\Skeleton\\Bootloader\\SkeletonBootloader"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}