-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
136 lines (136 loc) · 4.01 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "apiato/apiato",
"type": "project",
"description": "A flawless framework for building scalable and testable API-Centric Apps with PHP and Laravel.",
"keywords": [
"Apiato",
"API",
"Framework",
"API framework",
"API Starter",
"PHP API Starter",
"Laravel API",
"PHP",
"Porto",
"Porto SAP"
],
"license": "MIT",
"homepage": "https://apiato.io/",
"support": {
"issues": "https://github.com/apiato/apiato/issues",
"source": "https://github.com/apiato/apiato"
},
"authors": [
{
"name": "Mahmoud Zalt",
"email": "[email protected]",
"role": "Author"
},
{
"name": "Mohammad Alavi",
"email": "[email protected]",
"homepage": "https://mohammadalavi.com/",
"role": "Maintainer"
}
],
"require": {
"apiato/core": "^8.13.0",
"php": "^8.1",
"ext-curl": "*",
"ext-gettext": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"ext-sodium": "*",
"ext-tokenizer": "*",
"guzzlehttp/guzzle": "^7.2",
"laravel/framework": "^10.0",
"laravel/tinker": "^2.8",
"lcobucci/clock": "3.0.*",
"webmozart/assert": "^1.11",
"wikimedia/composer-merge-plugin": "^2.1"
},
"require-dev": {
"ext-intl": "*",
"ext-json": "*",
"fakerphp/faker": "^1.19.1",
"friendsofphp/php-cs-fixer": "^3.8.0",
"jetbrains/phpstorm-attributes": "^1.0",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^7.0",
"php-standard-library/psalm-plugin": "^2.3",
"phpmd/phpmd": "@stable",
"phpunit/phpunit": "^10.0",
"psalm/plugin-laravel": "^2.8",
"psalm/plugin-mockery": "^1.1",
"psalm/plugin-phpunit": "^0.18.4",
"roave/security-advisories": "dev-latest",
"spatie/laravel-ignition": "^2.0",
"vimeo/psalm": "^5.8.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"ide-helper": [
"@php artisan ide-helper:models --nowrite --reset",
"@php artisan ide-helper:generate",
"@php artisan ide-helper:meta",
"@php artisan ide-helper:eloquent"
]
},
"extra": {
"laravel": {
"dont-discover": []
},
"merge-plugin": {
"include": [
"app/Ship/composer.json",
"app/Containers/*/*/composer.json"
],
"recurse": true,
"replace": false,
"merge-dev": true,
"merge-extra": true,
"merge-extra-deep": false,
"merge-scripts": true
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"github-protocols": [
"https"
],
"allow-plugins": {
"apiato/container-installer": true,
"composer/package-versions-deprecated": true,
"pestphp/pest-plugin": true,
"php-http/discovery": true,
"wikimedia/composer-merge-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}