forked from cknow/laravel-money
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 1.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
{
"name": "cknow/laravel-money",
"description": "Laravel Money",
"keywords": [
"laravel",
"money",
"currency"
],
"homepage": "https://github.com/cknow/laravel-money",
"license": "MIT",
"authors": [
{
"name": "Ricardo Gobbo de Souza",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/cknow/laravel-money/issues",
"source": "https://github.com/cknow/laravel-money"
},
"require": {
"php": "^7.1",
"ext-json": "*",
"ext-intl": "*",
"illuminate/support": "5.6.*|5.7.*|5.8.*",
"illuminate/view": "5.6.*|5.7.*|5.8.*",
"moneyphp/money": "^3.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.13",
"graham-campbell/testbench": "^5.1",
"jakub-onderka/php-parallel-lint": "^1.0",
"mockery/mockery": "^1.2",
"nikic/php-parser": "^4.1",
"phpmd/phpmd": "^2.6",
"phpro/grumphp": "^0.14",
"phpstan/phpstan": "^0.10",
"phpunit/phpunit": "^7.5",
"povils/phpmnd": "^2.0",
"sebastian/phpcpd": "^4.1",
"sensiolabs/security-checker": "^5.0",
"squizlabs/php_codesniffer": "^3.4"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"Cknow\\Money\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cknow\\Money\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"scripts": {
"test": [
"grumphp run"
]
},
"extra": {
"laravel": {
"providers": [
"Cknow\\Money\\MoneyServiceProvider"
]
}
}
}