-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
63 lines (63 loc) · 1.77 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
{
"name": ":vendor_slug/:package_slug",
"description": ":package_description",
"keywords": [
":vendor_name",
":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"
},
"require-dev": {
"yediyuz/dev-tools": "1.x-dev",
"phpstan/phpstan-phpunit": "^1.0",
"pestphp/pest": "^1.21.3",
"pestphp/pest-plugin-parallel": "^1.1.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.7.1",
"phpunit/phpcov": "^8.2.1",
"spatie/ray": "^1.34.2"
},
"autoload": {
"psr-4": {
"VendorName\\Skeleton\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"VendorName\\Skeleton\\Tests\\": "tests"
}
},
"scripts": {
"lint": "php-cs-fixer fix -v",
"test": "vendor/bin/pest --colors=always --parallel",
"test:coverage": "@test --coverage-php ./coverage/cov/default.cov",
"test:coverage:html": "@test --coverage-html coverage/html/default",
"test:lint": "php-cs-fixer fix -v --dry-run",
"test:styles": "vendor/bin/phpstan analyse --ansi",
"test:styles:pro": "vendor/bin/phpstan analyse --pro --fix --watch"
},
"extra": {
"branch-alias": {
"dev-:default_branch": "1.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}