-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
95 lines (95 loc) · 2.65 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
{
"$schema": "https://getcomposer.org/schema.json",
"name": "coinbase-automatic-report/gboquizo",
"type": "project",
"description": "Automatic report from Coinbase.",
"keywords": [
"report",
"coinbase"
],
"license": "MIT",
"require": {
"php": "^8.3",
"laravel/framework": "^11.9",
"laravel/tinker": "^2.9",
"neto737/coinbase": "@dev"
},
"require-dev": {
"fakerphp/faker": "^1.23",
"hermes/dependencies": "^1.1",
"larastan/larastan": "2.9",
"laravel/pail": "^1.1",
"laravel/pint": "^1.13",
"laravel/sail": "^1.26",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^8.1",
"pestphp/pest": "^3.5",
"phpunit/phpunit": "^11.0.1",
"roave/security-advisories": "dev-latest"
},
"repositories": [
{
"type": "path",
"url": "packages/coinbase-php"
}
],
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"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"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi",
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
"@php artisan migrate --graceful --ansi"
],
"coverage": [
"@php artisan test --coverage --coverage-clover='reports/coverage/coverage.xml' --coverage-html='reports/coverage"
],
"analyse": [
"@stan"
],
"lint": [
"@php vendor/bin/pint --test"
],
"fix": [
"@php vendor/bin/pint"
],
"stan": "@php vendor/bin/phpstan analyse --memory-limit 768M --ansi"
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"platform": {
"ext-pcntl": "8.3"
},
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}