-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
112 lines (112 loc) · 3.08 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
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "endouble/pss",
"type": "project",
"description": "Continious security scanner and asset discovery written in Laravel",
"keywords": [
"security",
"scanner",
"laravel"
],
"homepage": "https://github.com/Endouble/pss",
"license": "BSD-3-Clause",
"require": {
"php": "^7.2.5",
"ext-json": "*",
"ext-openssl": "*",
"ext-simplexml": "*",
"eminiarts/nova-tabs": "^1.2",
"endouble/badge": "*",
"endouble/expiration": "*",
"endouble/importstats": "*",
"fideloper/proxy": "^4.2",
"fruitcake/laravel-cors": "^2.0",
"google/apiclient": "^2.4",
"guzzlehttp/guzzle": "^6.5",
"io-developer/php-whois": "^3.4",
"knplabs/github-api": "^2.15",
"laravel/framework": "^7.24",
"laravel/nova": "~3.0",
"laravel/slack-notification-channel": "^2.1",
"laravel/socialite": "^4.4",
"laravel/tinker": "^2.0",
"maatwebsite/laravel-nova-excel": "^1.1",
"mindscreen/yarnlock": "dev-master",
"php-http/guzzle6-adapter": "^1.1",
"spatie/browsershot": "^3.34",
"symfony/dom-crawler": "^5.0",
"symfony/yaml": "^5.0",
"titasgailius/search-relations": "^1.0",
"voku/html-min": "^4.4"
},
"require-dev": {
"facade/ignition": "^2.0",
"fzaninotto/faker": "^1.9.1",
"laravel/telescope": "^3.5",
"mockery/mockery": "1.3.3",
"nunomaduro/collision": "^4.1",
"phpunit/phpunit": "^8.5"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"dont-discover": [
"laravel/telescope"
]
}
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"classmap": [
"database/seeds",
"database/factories"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://nova.laravel.com"
},
{
"type": "vcs",
"url": "https://github.com/arall/yarnlock.git"
},
{
"type": "path",
"url": "./nova-components/Badge"
},
{
"type": "path",
"url": "./nova-components/Expiration"
},
{
"type": "path",
"url": "./nova-components/ImportStats"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
"@php artisan storage:link"
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
}
}