-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
72 lines (72 loc) · 1.74 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
{
"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.2|^8.3",
"illuminate/console": "^10.34.0|^11.0.0",
"illuminate/container": "^10.34.0|^11.0.0",
"illuminate/contracts": "^10.34.0|^11.0.0",
"illuminate/support": "^10.34.0|^11.0.0",
"symfony/deprecation-contracts": "^3.0.0",
"symfony/filesystem": "^6.3.0|^7.0.0",
"symfony/polyfill-php83": "^1.28"
},
"require-dev": {
"phpunit/phpunit": "^10.1.0|^11.0.0",
"lastdragon-ru/lara-asp-testing": "self.version",
"mockery/mockery": "^1.6.5",
"orchestra/testbench": "^8.0.0|^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\\Provider"
]
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
}
}