-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.04 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
{
"name": "amethyst/action",
"type": "library",
"keywords": ["laravel", "amethyst", "action"],
"license": "MIT",
"require": {
"php": ">=8.2",
"amethyst/core": "0.3.*",
"amethyst/relation": "0.3.*",
"railken/template": "^1.1",
"amethyst/file": "0.3.*",
"amethyst/notification": "0.3.*",
"box/spout": "^2.7",
"guzzlehttp/guzzle": "^7.8",
"nicoswd/php-rule-parser": "^0.7.1"
},
"require-dev": {
"amethyst/foo": "0.3.*",
"orchestra/testbench": "*",
"friendsofphp/php-cs-fixer": "^3.52"
},
"autoload": {
"psr-4" : {
"Amethyst\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"Amethyst\\Tests\\": "tests/"
}
},
"extra": {
"amethyst": {
"package": "action",
"namespace": "Amethyst"
},
"laravel": {
"providers": [
"Amethyst\\Providers\\ActionServiceProvider"
]
}
}
}