This repository was archived by the owner on Jan 20, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
75 lines (75 loc) · 2.08 KB
/
composer.json
File metadata and controls
75 lines (75 loc) · 2.08 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
{
"name": "codedor/facade-docblock-generator",
"description": "Generate docblocks for your facade",
"keywords": [
"package",
"laravel",
"facade",
"docblock",
"generator"
],
"homepage": "https://github.com/codedor/facade-docblock-generator",
"type": "package",
"license": "MIT",
"support": {
"issues": "https://github.com/codedor/facade-docblock-generator/issues",
"source": "https://github.com/codedor/facade-docblock-generator"
},
"authors": [
{
"name": "Jyrki De Neve",
"email": "jyrki.deneve@codedor.be"
}
],
"require": {
"php": "^8.2",
"illuminate/support": "^10.1",
"phpstan/phpdoc-parser": "^1.16"
},
"require-dev": {
"ably/ably-php": "^1.1",
"doctrine/dbal": "^3.6",
"illuminate/auth": "^10.1",
"illuminate/broadcasting": "^10.1",
"illuminate/cookie": "^10.1",
"illuminate/encryption": "^10.1",
"illuminate/hashing": "^10.1",
"illuminate/http": "^10.1",
"illuminate/log": "^10.1",
"illuminate/mail": "^10.1",
"illuminate/notifications": "^10.2",
"illuminate/redis": "^10.1",
"illuminate/routing": "^10.1",
"illuminate/translation": "^10.1",
"illuminate/validation": "^10.1",
"laravel/pint": "^1.5",
"mockery/mockery": "^1.5.1",
"orchestra/testbench": "^8.0",
"pestphp/pest": "^1.22.3",
"spatie/pest-plugin-snapshots": "^1.1",
"symfony/filesystem": "^6.2"
},
"autoload": {
"psr-4": {
"FacadeDocblockGenerator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": [
"bin/facade-docblock-generator"
]
}