-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
84 lines (84 loc) · 2.12 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
76
77
78
79
80
81
82
83
84
{
"name": "hyde/monorepo",
"description": "The HydePHP source code monorepo.",
"homepage": "https://hydephp.com",
"type": "project",
"license": "MIT",
"support": {
"issues": "https://github.com/hydephp/develop/issues",
"source": "https://github.com/hydephp/develop"
},
"authors": [
{
"name": "Caen De Silva",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"hyde/framework": "*",
"hyde/publications": "*",
"hyde/ui-kit": "*",
"laravel-zero/framework": "^10.0"
},
"require-dev": {
"desilva/psalm-coverage": "dev-master",
"hyde/monorepo-dev-tools": "*",
"hyde/realtime-compiler": "*",
"hyde/testing": "*",
"jetbrains/phpstorm-attributes": "^1.0",
"laravel/tinker": "^2.7",
"pestphp/pest-plugin-type-coverage": "2.x-dev",
"phpstan/phpstan": "^1.8",
"psalm/plugin-laravel": "^2.11"
},
"replace": {
"symfony/polyfill-php72": "*",
"symfony/polyfill-php80": "*"
},
"conflict": {
"symfony/string": ">=7.0"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"@php -r \"@unlink('./app/storage/framework/cache/packages.php');\"",
"@php hyde package:discover --ansi"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": false,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": ["hyde"],
"repositories": [
{
"type": "path",
"url": "./packages/*"
},
{
"type": "path",
"url": "./monorepo/DevTools"
},
{
"type": "vcs",
"url": "https://github.com/caendesilva/psalm-coverage",
"no-api": true
}
]
}