-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
78 lines (78 loc) · 2.23 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
{
"name": "mustang-framework/core",
"description": "Core package for Mustang framework.",
"keywords": [
"mustang",
"mustang core",
"core",
"Porto",
"Porto SAP"
],
"license": "MIT",
"homepage": "https://mustang-framework.github.io/",
"support": {
"issues": "https://github.com/mustang-framework/core/issues",
"source": "https://github.com/mustang-framework/core"
},
"authors": [
{
"name": "Aboozar Ghaffari",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-gettext": "*",
"mustang-framework/container-installer": "^10.0",
"prettus/l5-repository": "^2.9.0",
"spatie/laravel-fractal": "^6.0",
"vinkla/hashids": "^11.0",
"guzzlehttp/guzzle": "^7.2",
"laravel/framework": "^10.0",
"laravel/passport": "^11.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"mockery/mockery": "^1.4.4",
"friendsofphp/php-cs-fixer": "^3.8.0",
"vimeo/psalm": "^5.0"
},
"autoload": {
"psr-4": {
"Mustang\\Core\\": ""
},
"files": [
"Helpers/helpers.php"
]
},
"autoload-dev": {
"psr-4": {}
},
"extra": {
"laravel": {
"providers": [
"Mustang\\Core\\Providers\\MustangServiceProvider",
"Vinkla\\Hashids\\HashidsServiceProvider",
"Prettus\\Repository\\Providers\\RepositoryServiceProvider",
"Spatie\\Fractal\\FractalServiceProvider",
"Mustang\\Core\\Generator\\GeneratorsServiceProvider"
],
"aliases": {
"Hashids": "Vinkla\\Hashids\\Facades\\Hashids",
"Fractal": "Spatie\\Fractal\\FractalFacade"
}
}
},
"scripts": {
"php-cs-fixer": "php-cs-fixer --config=./php_cs.dist.php"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"mustang-framework/container-installer": true,
"composer/package-versions-deprecated": true
}
}
}