-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
123 lines (123 loc) · 4.24 KB
/
Copy pathcomposer.json
File metadata and controls
123 lines (123 loc) · 4.24 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
117
118
119
120
121
122
123
{
"$schema": "https://getcomposer.org/schema.json",
"name": "webkernel/codebase",
"description": "Central package for booting and managing a Webkernel platform (Laravel + Filament integration).",
"type": "library",
"license": "EPL-2.0",
"version": "0.12.0",
"autoload": {
"files": [
"load.codebase.functions.php"
],
"psr-4": {
"Webkernel\\": "src",
"Webkernel\\PBoard\\System\\Presentation\\": "Presentation/"
}
},
"require": {
"php": ">=8.4",
"calebporzio/sushi": "^2.5",
"filament/filament": "^5.0",
"jeremykendall/php-domain-parser": "^6.4",
"laravel/framework": "^13.0",
"laravel/octane": "^2.12",
"laravel/pail": "^1.2.5",
"laravel/prompts": "^0.3.8",
"laravel/sanctum": "^4.0",
"laravel/tinker": "^3.0",
"livewire/blaze": "^1.0",
"nikic/php-parser": "^5.7",
"webkernel/standard-lifecycle": "0.12.0",
"webkernel/standard-paths": "0.12.0",
"webkernel/standard-operations": "0.12.0",
"webkernel/standard-pix": "0.12.0",
"webkernel/standard-query": "0.12.0",
"webkernel/component-i18n": "0.12.0",
"webkernel/component-access-control": "0.12.0",
"webkernel/component-configuration": "0.12.0",
"webkernel/component-eloquent-extension": "0.12.0",
"webkernel/component-elements": "0.12.0",
"webkernel/component-providers": "0.12.0",
"webkernel/component-exceptions": "0.12.0",
"webkernel/component-modules-essentials": "0.12.0",
"webkernel/component-installer": "0.12.0",
"webkernel/component-user": "0.12.0",
"webkernel/module-webkernelphp-com": ">=0.1.0",
"webkernel/static-guides": "0.12.0",
"webkernel/x-example-module": ">=0.1.0",
"webkernel/x-monorepo": "0.12.0",
"webkernel/component-business": "0.12.0",
"webkernel/component-config-routing": "0.12.0"
},
"extra": {
"laravel": {
"providers": []
},
"webkernel": {
"package_repo": "git@github.com:webkernelphp/codebase.git",
"production": true,
"prefix": "codebase"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"require-dev": {
"larastan/larastan": "^3.0",
"laravel/pint": "^1.14",
"nunomaduro/collision": "^7.10.0|^8.1.1",
"orchestra/testbench": "^9.0.0|^10.0.0|^11.0.0",
"pestphp/pest": "^3.0|^4.0",
"pestphp/pest-plugin-arch": "^3.0|^4.0",
"pestphp/pest-plugin-laravel": "^3.0|^4.0",
"pestphp/pest-plugin-type-coverage": "^3.5|^4.0",
"phpstan/extension-installer": "^1.3|^2.0",
"phpstan/phpstan-deprecation-rules": "^1.1|^2.0",
"phpstan/phpstan-phpunit": "^1.3|^2.0",
"spatie/laravel-ray": "^1.40"
},
"scripts": {
"post-autoload-dump": [
"@clear",
"@prepare",
"@composer run prepare"
],
"prepare": "@php vendor/bin/testbench package:discover --ansi",
"analyse": "vendor/bin/phpstan analyse",
"lint": "pint --parallel",
"refactor": "rector",
"test:lint": "pint --test",
"test:refactor": "rector --dry-run",
"test:unit": "pest",
"test:coverage": "pest --coverage --parallel",
"test:type": "pest --type-coverage",
"test": [
"@test:refactor",
"@test:lint",
"@test:unit",
"@test:coverage",
"@test:type"
],
"finalize": [
"@analyse",
"@refactor",
"@lint --parallel",
"@test:unit --parallel",
"@test:coverage",
"@test:type"
],
"clear": "@php vendor/bin/testbench package:purge-skeleton --ansi",
"build": "@php vendor/bin/testbench workbench:build --ansi",
"serve": [
"Composer\\Config::disableProcessTimeout",
"@build",
"@php vendor/bin/testbench serve --ansi"
]
}
}