forked from bakaphp/kanvas-ecosystem-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
116 lines (116 loc) · 3.72 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
{
"name": "bakaphp/phalcon-api",
"type": "project",
"description": "Kanvas API Skeleton",
"keywords": [
"framework",
"laravel",
"mctekk",
"kanvas"
],
"license": "MIT",
"require": {
"php": "^8.2",
"genealabs/laravel-model-caching": "^0.13",
"goldspecdigital/laravel-eloquent-uuid": "^10.0",
"guzzlehttp/guzzle": "^7.6",
"http-interop/http-factory-guzzle": "^1.0",
"laravel/framework": "^10.0",
"laravel/octane": "^2.0",
"laravel/sanctum": "^3.2",
"laravel/scout": "^10.2",
"laravel/socialite": "^5.6",
"laravel/tinker": "^2.7",
"lcobucci/jwt": "^4.3",
"league/flysystem-aws-s3-v3": "^3.12",
"meilisearch/meilisearch-php": "^1.1",
"mll-lab/graphql-php-scalars": "^6.0",
"mll-lab/laravel-graphiql": "^1.2",
"nuwave/lighthouse": "^6.0",
"phpclassic/php-shopify": "^1.2",
"sentry/sentry-laravel": "^3.2",
"shopify/shopify-api": "^4.1",
"silber/bouncer": "^1.0",
"spatie/data-transfer-object": "^3.7",
"spatie/laravel-data": "^3.1",
"spatie/laravel-google-cloud-storage": "^2.2",
"spatie/laravel-health": "^1.22",
"spatie/laravel-queueable-action": "^2.14",
"spatie/laravel-webhook-server": "^3.4",
"symfony/http-client": "^6.2",
"symfony/mailgun-mailer": "^6.2",
"vladimir-yuldashev/laravel-queue-rabbitmq": "^13.2",
"vlucas/phpdotenv": "^5.5"
},
"require-dev": {
"fakerphp/faker": "^1.9.1",
"kitloong/laravel-migrations-generator": "^6.8",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^7.0",
"phpunit/phpunit": "10.2.1",
"spatie/laravel-ignition": "^2.0",
"vimeo/psalm": "^5.6",
"phpstan/phpstan": "^1.4.7"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Kanvas\\": "src/Kanvas",
"Baka\\": "src/Baka",
"Domains\\": "src/Domains",
"Kanvas\\Inventory\\": "src/Inventory",
"Kanvas\\Social\\": "src/Social",
"Kanvas\\Guild\\": "src/Guild",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"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"
],
"test": "php artisan test",
"migrate-kanvas": [
"php artisan migrate"
],
"migrate-inventory": [
"php artisan migrate --path database/migrations/Inventory/ --database inventory"
],
"migrate-social": [
"php artisan migrate --path database/migrations/Social/ --database social"
],
"migrate-crm": [
"php artisan migrate --path database/migrations/Guild/ --database crm"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}