-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
126 lines (126 loc) · 3.16 KB
/
composer.json
File metadata and controls
126 lines (126 loc) · 3.16 KB
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
{
"name": "noix/ship-container",
"type": "project",
"description": "Sea to sea project. for modeling the universe🙂.",
"version": "0.9.0",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"require": {
"php": "^8.3.2",
"php-64bit": "^8.3.2",
"ext-bcmath": "*",
"ext-calendar": "*",
"ext-curl": "*",
"ext-gd": "*",
"ext-igbinary": "*",
"ext-imagick": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-pcntl": "*",
"ext-pdo": "*",
"ext-redis": "*",
"ext-sockets": "*",
"ext-swoole": "*",
"ext-zlib": "*",
"bugover/ship-manager": "^1.0.0",
"pda/pheanstalk": "^6.0.0",
"wikimedia/composer-merge-plugin": "^2.0.0"
},
"require-dev": {
"beyondcode/laravel-er-diagram-generator": "^3.0.0",
"composer/composer": "^2.8.0",
"fakerphp/faker": "^1.0.0",
"friendsofphp/php-cs-fixer": "^3.0.0",
"jetbrains/phpstorm-stubs": "^2024.2",
"kitloong/laravel-migrations-generator": "^7.0.0",
"laravel/homestead": "^15.0.0",
"laravel/pint": "^1.0.0",
"laravel/sail": "^1.0.0",
"orangehill/iseed": "^3.0.1",
"phpstan/phpstan": "^1.0.0",
"phpunit/phpunit": "^11.0.0",
"predis/predis": "^2.0.0",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "*"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Ship\\": "app/Ship/",
"Containers\\": "app/Containers/",
"Database\\Seed\\": "database/Seed/"
}
},
"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('etc/devs/.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"hook-test": "sh bin/package_links",
"analyse": "phpstan analyse --memory-limit 300M"
},
"extra": {
"installer-paths": {
"src/{$name}": [
"type:laravel-library"
]
},
"laravel": {
"dont-discover": []
},
"merge-plugin": {
"include": [
"app/Ship/composer.json",
"app/Containers/*/composer.json",
"app/Containers/*/*/composer.json"
],
"recurse": true,
"replace": false,
"merge-dev": true,
"merge-extra": false,
"merge-extra-deep": false,
"merge-scripts": true
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"wikimedia/composer-merge-plugin": true,
"composer/installers": true
}
},
"provide": {
"ext-gd": "*",
"ext-pdo": "*",
"ext-json": "*",
"ext-curl": "*",
"ext-zlib": "*",
"ext-redis": "*",
"ext-pcntl": "*",
"ext-swoole": "*",
"ext-bcmath": "*",
"ext-imagick": "*",
"ext-openssl": "*",
"ext-sockets": "*",
"ext-igbinary": "*",
"ext-mbstring": "*",
"ext-calendar": "*"
},
"minimum-stability": "stable",
"prefer-stable": true
}