-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
94 lines (94 loc) · 2.85 KB
/
composer.json
File metadata and controls
94 lines (94 loc) · 2.85 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
{
"name": "dostrog/larate",
"description": "Small library to access to currency exchange rates API of CBRF (Bank of Russia) and NBU (National Bank of Ukraine) from Laravel",
"type": "library",
"keywords": [
"dostrog",
"larate",
"api",
"laravel",
"currency",
"rates",
"rub",
"uah"
],
"homepage": "https://github.com/dostrog/larate",
"license": "MIT",
"authors": [
{
"name": "Sergey Donin",
"email": "sergey.donin@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^8.4",
"ext-bcmath": "*",
"ext-intl": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"guzzlehttp/guzzle": "^7.8.1",
"moneyphp/money": "^v4.7.1",
"thecodingmachine/safe": "^v3.3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^v3.75.0",
"orchestra/testbench": "^v10.3.0",
"phpunit/phpunit": "^v12.2.1",
"rector/rector": "^v2.0.17",
"roave/security-advisories": "dev-master"
},
"autoload": {
"psr-4": {
"Dostrog\\Larate\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Dostrog\\Larate\\Tests\\": "tests",
"Workbench\\App\\": "workbench/app/",
"Workbench\\Database\\Factories\\": "workbench/database/factories/",
"Workbench\\Database\\Seeders\\": "workbench/database/seeders/"
}
},
"scripts": {
"fix-style": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"check-style": "vendor/bin/php-cs-fixer fix --allow-risky=yes --dry-run",
"test": "vendor/bin/phpunit --no-coverage --colors=always",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"post-autoload-dump": [
"@clear",
"@prepare"
],
"clear": "@php vendor/bin/testbench package:purge-skeleton --ansi",
"prepare": "@php vendor/bin/testbench package:discover --ansi",
"build": "@php vendor/bin/testbench workbench:build --ansi",
"serve": [
"Composer\\Config::disableProcessTimeout",
"@build",
"@php vendor/bin/testbench serve --ansi"
],
"lint": [
"@php vendor/bin/phpstan analyse --verbose --ansi"
]
},
"support": {
"issues": "https://github.com/dostrog/larate/issues",
"source": "https://github.com/dostrog/larate"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Dostrog\\Larate\\Providers\\LarateServiceProvider"
],
"aliases": {
"Larate": "Dostrog\\Larate\\Facades\\LarateFacade"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}