-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.03 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
{
"name": "amethyst/invoice",
"keywords": ["laravel", "amethyst", "amethyst-invoice", "invoice"],
"license": "MIT",
"require": {
"php": ">=7.2",
"amethyst/core": "0.2.*",
"amethyst/legal-entity": "0.2.*",
"amethyst/taxonomy": "0.2.*",
"amethyst/file-generator": "0.2.*",
"amethyst/work": "0.2.*",
"amethyst/listener": "0.2.*",
"amethyst/tax": "0.2.*",
"league/iso3166": "^2.1",
"mossadal/math-parser": "^1.3",
"moneyphp/money": "^3.1"
},
"require-dev": {
"phpunit/phpunit": "*",
"orchestra/testbench": "*"
},
"autoload": {
"psr-4" : {
"Amethyst\\Database\\Seeds\\": "database/seeds/",
"Amethyst\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"Amethyst\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Amethyst\\Providers\\InvoiceServiceProvider"
]
}
}
}