forked from apiato/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
84 lines (84 loc) · 2.37 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
{
"name": "apiato/core",
"description": "Core package for Apiato.",
"keywords": [
"apiato",
"apiato core",
"core",
"Porto",
"Porto SAP"
],
"license": "MIT",
"homepage": "http://apiato.io/",
"support": {
"issues": "https://github.com/apiato/core/issues",
"source": "https://github.com/apiato/core"
},
"authors": [
{
"name": "Mahmoud Zalt",
"email": "mahmoud@zalt.me"
}
],
"require": {
"php": "^8.1",
"apiato/container-installer": "^2.0.8",
"prettus/l5-repository": "^2.9.0",
"spatie/laravel-fractal": "^6.0",
"vinkla/hashids": "^11.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.2",
"laravel/framework": "^10.0",
"laravel/passport": "^11.0.0",
"ext-gettext": "*"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"mockery/mockery": "^1.4.4",
"friendsofphp/php-cs-fixer": "^3.8.0",
"vimeo/psalm": "^5.8.0"
},
"autoload": {
"psr-4": {
"Apiato\\Core\\": ""
},
"files": [
"Helpers/helpers.php"
]
},
"autoload-dev": {
"psr-4": {}
},
"extra": {
"laravel": {
"providers": [
"Apiato\\Core\\Providers\\ApiatoServiceProvider",
"Vinkla\\Hashids\\HashidsServiceProvider",
"Prettus\\Repository\\Providers\\RepositoryServiceProvider",
"Spatie\\Fractal\\FractalServiceProvider",
"Apiato\\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"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"apiato/container-installer": true,
"composer/package-versions-deprecated": true,
"wikimedia/composer-merge-plugin": true,
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}