generated from wayofdev/laravel-package-tpl
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
75 lines (75 loc) · 2.37 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
69
70
71
72
73
74
75
{
"name": "wayofdev/laravel-open-docs",
"description": "PHP package template with GitHub Actions",
"type": "library",
"license": "MIT",
"homepage": "https://wayof.dev",
"support": {
"issues": "https://github.com/wayofdev/laravel-open-docs/issues",
"source": "https://github.com/wayofdev/laravel-open-docs"
},
"authors": [
{
"name": "lotyp",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"laravel/framework": "^10.13 || ^11.0",
"zircote/swagger-php": "^4.7"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.31",
"nunomaduro/larastan": "^2.6",
"orchestra/testbench": "^8.5",
"pestphp/pest": "^2.6",
"pestphp/pest-plugin-laravel": "^2.0.0",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "^10.2",
"roave/security-advisories": "dev-latest",
"wayofdev/cs-fixer-config": "^1.2"
},
"autoload": {
"psr-4": {
"WayOfDev\\OpenDocs\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WayOfDev\\OpenDocs\\App\\": "tests/app/src/",
"WayOfDev\\OpenDocs\\Tests\\": "tests/src/"
}
},
"scripts": {
"cs:fix": "php vendor/bin/php-cs-fixer fix -v",
"cs:diff": "php vendor/bin/php-cs-fixer fix --dry-run -v --diff",
"test": "XDEBUG_MODE=coverage php vendor/bin/pest",
"test:cc": "XDEBUG_MODE=coverage php vendor/bin/pest --coverage",
"stan": "php vendor/bin/phpstan analyse --memory-limit=2G",
"stan:ci": "php vendor/bin/phpstan analyse --memory-limit=2G --error-format=github"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true,
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"WayOfDev\\OpenDocs\\Bridge\\Laravel\\Providers\\OpenDocsServiceProvider"
]
},
"composer-normalize": {
"indent-size": 4,
"indent-style": "space"
}
}
}