-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
71 lines (71 loc) · 1.66 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
{
"name": "lastdragon-ru/lara-asp-core",
"homepage": "https://github.com/LastDragon-ru/lara-asp",
"description": "The Awesome Set of Packages for Laravel - The Core.",
"readme": "README.md",
"license": "MIT",
"type": "library",
"keywords": [
"laravel-package",
"laravel",
"php",
"queue",
"laravel-queue"
],
"support": {
"issues": "https://github.com/LastDragon-ru/lara-asp/issues",
"source": "https://github.com/LastDragon-ru/lara-asp",
"forum": "https://github.com/LastDragon-ru/lara-asp/discussions"
},
"require": {
"php": "^8.3",
"illuminate/console": "^11.0.8",
"illuminate/container": "^11.0.8",
"illuminate/contracts": "^11.0.8",
"illuminate/support": "^11.0.8",
"symfony/deprecation-contracts": "^3.0.0",
"symfony/filesystem": "^7.0.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5.0|^11.0.0",
"lastdragon-ru/lara-asp-testing": "self.version",
"mockery/mockery": "^1.6.5",
"orchestra/testbench": "^9.0.0"
},
"autoload": {
"psr-4": {
"LastDragon_ru\\LaraASP\\Core\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LastDragon_ru\\LaraASP\\Core\\Docs\\": "docs"
},
"exclude-from-classmap": [
"docs/"
]
},
"extra": {
"lara-asp": {
"ci": {
"required-extensions": {
"league/flysystem": [
"ext-fileinfo"
],
"illuminate/console": [
"ext-mbstring"
]
}
}
},
"laravel": {
"providers": [
"LastDragon_ru\\LaraASP\\Core\\PackageProvider"
]
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
}
}