-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.43 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.43 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
{
"name": "amacado/handelsregister-cli",
"description": "The unoffical php cli client for `Handelsregister` search.",
"keywords": ["handelsregister", "php", "laravel zero", "console", "cli"],
"type": "project",
"license": "Apache License 2.0",
"support": {
"issues": "https://github.com/amacado/handelsregister-cli/issues",
"source": "https://github.com/amacado/handelsregister-cli"
},
"authors": [
{
"name": "Clemens Bastian",
"email": "info@clemensbastian.de"
}
],
"require": {
"php": "^8.2.0",
"laravel-zero/framework": "^11.0.0",
"nunomaduro/laravel-console-dusk": "^1.13",
"phpunit/phpunit": "^10.5"
},
"require-dev": {
"laravel/pint": "^1.15.2",
"mockery/mockery": "^1.6.11",
"pestphp/pest": "^2.34.7"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"bin": ["handelsregister-cli"]
}