-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
116 lines (116 loc) · 3.81 KB
/
Copy pathcomposer.json
File metadata and controls
116 lines (116 loc) · 3.81 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "codebar-ag/laravel-start",
"type": "project",
"description": "Application template for Codebar Solutions AG Laravel projects.",
"keywords": [
"laravel",
"framework",
"codebar",
"template"
],
"license": "MIT",
"require": {
"php": "^8.3",
"codebar-ag/laravel-flysystem-cloudinary": "^13.0",
"codebar-ag/laravel-feature-policy": "^13.0",
"laravel/framework": "^13.3",
"laravel/nightwatch": "^1.26",
"laravel/tinker": "^3.0",
"league/commonmark": "^2.6",
"league/flysystem-aws-s3-v3": "^3.32",
"sammyjo20/lasso": "^3.5",
"spatie/laravel-csp": "^3.23",
"spatie/laravel-flash": "^1.10.2",
"spatie/laravel-health": "^1.39.1",
"spatie/laravel-honeypot": "^4.7.1",
"spatie/laravel-responsecache": "^8.3",
"spatie/laravel-sitemap": "^7.4",
"spatie/security-advisories-health-check": "^1.3.1",
"spatie/yaml-front-matter": "^2.0",
"symfony/http-client": "^8.0.8",
"symfony/postmark-mailer": "^8.0.4"
},
"require-dev": {
"codebar-ag/coding-guidelines": "^1.2",
"fakerphp/faker": "^1.24.1",
"larastan/larastan": "^3.9.3",
"laravel/pint": "^1.29",
"laravel/sail": "^1.56",
"mockery/mockery": "^1.6.12",
"nunomaduro/collision": "^8.9.2",
"pestphp/pest": "^4.4.4",
"phpunit/phpunit": "^12.5.16",
"pestphp/pest-plugin-arch": "^4.0",
"pestphp/pest-plugin-faker": "^4.0",
"pestphp/pest-plugin-laravel": "^4.1",
"pestphp/pest-plugin-type-coverage": "^4.0.3",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^2.1.46",
"spatie/laravel-ignition": "^2.9",
"spatie/laravel-ray": "^1.43.7"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": [
"app/Support/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"analyse": "./vendor/bin/phpstan analyse",
"test": "./vendor/bin/pest tests/Core tests/Feature tests/Helper tests/Unit --compact",
"test:all": "php artisan test --compact",
"test:type-coverage": "./vendor/bin/pest tests/Core tests/Feature tests/Helper tests/Unit --type-coverage --min=90",
"test:coverage": "XDEBUG_MODE=coverage ./vendor/bin/pest tests/Core tests/Feature tests/Helper tests/Unit --coverage --min=90",
"verify": [
"@analyse",
"@test"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true,
"phpstan/extension-installer": true
}
},
"prefer-stable": true,
"repositories": {
"codebar-coding-guidelines": {
"type": "path",
"url": "packages/coding-guidelines",
"options": {
"symlink": true
}
}
}
}