-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
composer.json
executable file
·111 lines (111 loc) · 3.49 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
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
{
"name": "laravel-zero/framework",
"description": "The Laravel Zero Framework.",
"keywords": ["framework", "laravel", "laravel zero", "console", "cli"],
"homepage": "https://laravel-zero.com",
"license": "MIT",
"support": {
"issues": "https://github.com/laravel-zero/laravel-zero/issues",
"source": "https://github.com/laravel-zero/laravel-zero"
},
"authors": [
{
"name": "Nuno Maduro",
"email": "[email protected]"
},
{
"name": "Owen Voke",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"ext-json": "*",
"dragonmantank/cron-expression": "^3.4.0",
"guzzlehttp/guzzle": "^7.9.2",
"illuminate/cache": "^11.30.0",
"illuminate/collections": "^11.30.0",
"illuminate/config": "^11.30.0",
"illuminate/console": "^11.30.0",
"illuminate/container": "^11.30.0",
"illuminate/contracts": "^11.30.0",
"illuminate/events": "^11.30.0",
"illuminate/filesystem": "^11.30.0",
"illuminate/process": "^11.30.0",
"illuminate/support": "^11.30.0",
"illuminate/testing": "^11.30.0",
"laravel-zero/foundation": "^11.5.0",
"laravel/prompts": "^0.3.1 || ^0.3.1 || ^0.3.1",
"league/flysystem": "^3.29.1",
"nunomaduro/collision": "^8.5.0",
"nunomaduro/laravel-console-summary": "^1.12.1",
"nunomaduro/laravel-console-task": "^1.9",
"nunomaduro/laravel-desktop-notifier": "^2.8.1",
"nunomaduro/termwind": "^2.2.0",
"psr/log": "^3.0.2",
"ramsey/uuid": "^4.7.6",
"symfony/console": "^7.1.6",
"symfony/error-handler": "^7.1.6",
"symfony/event-dispatcher": "^7.1.6",
"symfony/finder": "^7.1.6",
"symfony/process": "^7.1.6",
"symfony/var-dumper": "^7.1.6",
"vlucas/phpdotenv": "^5.6.1"
},
"require-dev": {
"illuminate/bus": "^11.30.0",
"illuminate/database": "^11.30.0",
"illuminate/http": "^11.30.0",
"illuminate/log": "^11.30.0",
"illuminate/queue": "^11.30.0",
"illuminate/redis": "^11.30.0",
"illuminate/view": "^11.30.0",
"laravel-zero/phar-updater": "^1.4",
"laravel/pint": "^1.18.1",
"nunomaduro/laravel-console-dusk": "^1.13.1",
"nunomaduro/laravel-console-menu": "^3.5",
"pestphp/pest": "^3.5.1",
"phpstan/phpstan": "^1.12.7"
},
"autoload": {
"psr-4": {
"LaravelZero\\Framework\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests",
"App\\": "tests/Application/app"
},
"classmap": [
"src/Components/Database/stubs"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"lint": "pint --ansi",
"test:lint": "pint --test --ansi",
"test:types": "phpstan analyse --ansi --memory-limit=-1",
"test:unit": "pest --colors=always",
"test": [
"@test:types",
"@test:lint",
"@test:unit"
]
},
"extra": {
"branch-alias": {
"dev-master": "11.x-dev"
}
},
"suggest": {
"ext-pcntl": "Required to ensure that data is cleared when cancelling the build process."
}
}