-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
73 lines (73 loc) · 2.17 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
{
"name": "mattiabasone/minepic",
"description": "Minepic Website and API service",
"keywords": ["minepic", "avatar", "minecraft", "skins"],
"license": "BSD-3-Clause",
"type": "project",
"require": {
"php": "^8.2",
"ext-ctype": "*",
"ext-gd": "*",
"ext-imagick": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^7.0.1",
"illuminate/redis": "^9.0",
"laravel/lumen-framework": "^9.1",
"league/flysystem": "^3.0",
"league/fractal": "^0.20.0",
"ramsey/uuid": "^4.0",
"vlucas/phpdotenv": "^5.0"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^2.6",
"fakerphp/faker": "^1.9.1",
"friendsofphp/php-cs-fixer": "^3.0",
"mockery/mockery": "^1.5",
"nunomaduro/larastan": "^2.0",
"php-coveralls/php-coveralls": "^2.2",
"phpunit/phpunit": "^9.5.10"
},
"replace": {
"symfony/polyfill-mbstring": "*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-intl-idn": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*",
"symfony/polyfill-php82": "*"
},
"autoload": {
"psr-4": {
"Minepic\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"MinepicTests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
],
"format": "vendor/bin/php-cs-fixer fix",
"ihg": "@php artisan ide-helper:generate",
"analyse": "@php vendor/bin/phpstan analyse",
"test": "vendor/bin/phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true
}