-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathcomposer.json
More file actions
79 lines (79 loc) · 2.17 KB
/
composer.json
File metadata and controls
79 lines (79 loc) · 2.17 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
{
"name": "florianv/laravel-swap",
"type": "library",
"description": "Currency exchange rates library for Laravel and Lumen",
"keywords": [
"laravel",
"lumen",
"currency",
"money",
"rate",
"conversion",
"exchange rates"
],
"homepage": "https://github.com/florianv/laravel-swap",
"license": "MIT",
"authors": [
{
"name": "Florian Voutzinos",
"email": "florian@voutzinos.com",
"homepage": "https://voutzinos.com"
}
],
"autoload": {
"psr-4": {
"Swap\\Laravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Swap\\Laravel\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.2",
"florianv/swap": "^4.0"
},
"require-dev": {
"graham-campbell/testbench": "^6.2",
"laravel/facade-documenter": "dev-main",
"phpunit/phpunit": "^11.0 || ^12.0",
"vimeo/psalm": "^6.0",
"roave/backward-compatibility-check": "^8.9",
"php-http/guzzle7-adapter": "^1.0",
"nyholm/psr7": "^1.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/laravel/facade-documenter.git",
"name": "facade-documenter"
}
],
"scripts": {
"test": "vendor/bin/phpunit",
"facade:fix": "php -f vendor/bin/facade.php Swap\\Laravel\\Facades\\Swap --write",
"facade:lint": "php -f vendor/bin/facade.php Swap\\Laravel\\Facades\\Swap",
"psalm": "vendor/bin/psalm --no-progress",
"cs:fix": "vendor/bin/php-cs-fixer fix --no-interaction --ansi --quiet",
"cs:check": "vendor/bin/php-cs-fixer fix --no-interaction --ansi --verbose --dry-run"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
},
"laravel": {
"providers": [
"Swap\\Laravel\\SwapServiceProvider"
],
"aliases": {
"Swap": "Swap\\Laravel\\Facades\\Swap"
}
}
}
}