-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
79 lines (77 loc) · 2.18 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
{
"name": "gedachtegoed/workspace-core",
"description": "Core for building your own Portable Workspace",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"authors": [
{
"name": "Willem Leuverink",
"email": "[email protected]",
"homepage": "https://leuver.ink"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/gwleuverink"
}
],
"autoload": {
"psr-4": {
"Gedachtegoed\\Workspace\\Core\\": "src/",
"Gedachtegoed\\Workspace\\Core\\Tests\\": "tests/"
}
},
"scripts": {
"lint": "vendor/bin/duster lint",
"fix": "vendor/bin/duster fix",
"analyze": "vendor/bin/phpstan analyse",
"baseline": "vendor/bin/phpstan analyse --generate-baseline",
"test": "vendor/bin/testbench package:test --bail --retry"
},
"require": {
"php": "^8.1|^8.2",
"illuminate/support": "^10.23|^11"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.53",
"laravel/pint": "^1.15",
"larastan/larastan": "^2.9",
"squizlabs/php_codesniffer": "^3.7",
"tightenco/duster": "^2.7",
"tightenco/tlint": "^9.3",
"orchestra/testbench": "^9",
"pestphp/pest": "^2.34",
"symfony/thanks": "^1.3",
"timacdonald/callable-fake": "^1.7"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"symfony/thanks": true
}
},
"extra": {
"laravel": {
"providers": [
"Gedachtegoed\\Workspace\\Core\\ServiceProvider"
]
},
"thanks": [
{
"name": "tightenco/duster",
"url": "https://github.com/tighten/duster"
},
{
"name": "laravel/prompts",
"url": "https://github.com/laravel/prompts"
},
{
"name": "timacdonald/callable-fake",
"url": "https://github.com/timacdonald/callable-fake"
}
]
}
}