This repository has been archived by the owner on Dec 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathcomposer.json
99 lines (99 loc) · 2.7 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "pacoorozco/probind",
"description": "DNS Management Application for ISC BIND servers.",
"keywords": [
"dns",
"dns management",
"web service",
"isc bind"
],
"homepage": "https://github.com/pacoorozco/probind",
"license": "GPL-3.0-or-later",
"type": "project",
"authors": [
{
"name": "Paco Orozco",
"email": "[email protected]",
"homepage": "https://pacoorozco.info",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/pacoorozco/probind/issues"
},
"require": {
"php": "^8.1.0",
"badcow/dns": "^4.2.1",
"bensampo/laravel-enum": "^6.6.4",
"guilhermegonzaga/presenter": "^1.0.7",
"larapacks/setting": "^3.0.2",
"laravel/framework": "^10.26.2",
"laravel/ui": "^4.2.2",
"laravelcollective/html": "^6.4.1",
"pacoorozco/openssh": "^0.5.0",
"phpseclib/phpseclib": "^3.0.23",
"spatie/laravel-activitylog": "^4.7.3",
"yajra/laravel-datatables-oracle": "^10.10.0"
},
"require-dev": {
"brianium/paratest": "^7.2.9",
"doctrine/dbal": "^3.7.0",
"fakerphp/faker": "^1.23.0",
"laravel/pint": "^1.13.2",
"laravel/sail": "^1.25.0",
"mockery/mockery": "^1.6.6",
"nunomaduro/collision": "^v7.9.0",
"nunomaduro/larastan": "^2.6.4",
"phpunit/phpunit": "^10.4.0",
"spatie/laravel-ignition": "^2.3.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"test": [
"@php artisan test"
],
"test-coverage": [
"@php artisan test --coverage-html .tmp/test-coverage"
],
"build": [
"@composer archive --format=zip --dir=.tmp/dist"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "stable",
"prefer-stable": true,
"archive": {
"exclude": [
"/utils",
"/.*",
"/docs",
"!/.env.example",
"webpack.mix.js",
"package.json"
]
}
}