-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
115 lines (115 loc) · 3.29 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
{
"name": "specialtycoffeecyprus/specialty-api",
"type": "project",
"description": "REST API microservice of Specialty Coffee in Cyprus website",
"keywords": [
"REST",
"API",
"microservice",
"specialty",
"coffee",
"coffeshop",
"cyprus"
],
"homepage": "https://specialtycoffee.cy/",
"license": "MIT",
"authors": [
{
"name": "Vladimir",
"homepage": "https://t.me/vladimir_mvs",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/specialtycoffeecyprus/specialty-api/issues",
"docs": "https://dev.to/vladimir_mvs/pragmatic-development-2lph"
},
"require": {
"php": "^8.2",
"ext-apcu": "*",
"ext-ctype": "*",
"ext-curl": "*",
"ext-dom": "*",
"ext-fileinfo": "*",
"ext-filter": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-pcre": "*",
"ext-pdo_sqlite": "*",
"ext-phar": "*",
"ext-session": "*",
"ext-tokenizer": "*",
"ext-zend-opcache": "*",
"laravel/framework": "^10.0",
"laravel/scout": "*",
"sentry/sentry-laravel": "*",
"spatie/laravel-robots-middleware": "*"
},
"require-dev": {
"ext-iconv": "*",
"ext-simplexml": "*",
"ext-xml": "*",
"ext-xmlwriter": "*",
"driftingly/rector-laravel": "*",
"hotmeteor/spectator": "*",
"laravel/pint": "*",
"mockery/mockery": "*",
"pestphp/pest": "*",
"pestphp/pest-plugin-laravel": "*",
"rector/rector": "*",
"zircote/swagger-php": "*"
},
"replace": {
"dragonmantank/cron-expression": "*",
"egulias/email-validator": "*",
"http-interop/http-factory-guzzle": "*",
"league/commonmark": "*",
"league/flysystem": "*",
"myclabs/deep-copy": "*",
"myclabs/php-enum": "*",
"ramsey/uuid": "*",
"symfony/mime": "*",
"symfony/mailer": "^6.0",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-intl-grapheme": "*",
"symfony/polyfill-mbstring": "*",
"symfony/polyfill-php80": "*",
"symfony/uid": "*",
"tijsverkoyen/css-to-inline-styles": "*"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"pestphp/pest-plugin": true
},
"apcu-autoloader": true,
"discard-changes": true,
"htaccess-protect": false,
"notify-on-install": false,
"optimize-autoloader": true,
"platform-check": false,
"sort-packages": true
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover"
],
"openapi": "openapi --output storage/openapi.yaml app"
}
}