-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
70 lines (70 loc) · 1.55 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
{
"name": "rattfieldnz/shodan",
"description": "A laravel package to check URLs with Shodan API.",
"license": "MIT",
"keywords": [
"shodan",
"api",
"check urls",
"safe urls",
"websites"
],
"type": "package",
"authors": [
{
"name": "Robert Attfield",
"email": "emailme@robertattfield.com"
}
],
"homepage": "https://github.com/rattfieldnz/shodan",
"require": {
"php": ">=7.2",
"ext-curl": "*",
"ext-json": "*",
"curl/curl": "^2.2",
"illuminate/support": "~8.31.0"
},
"require-dev": {
"phpunit/phpunit": "~9.5",
"mockery/mockery": "^1.4",
"sempro/phpunit-pretty-print": "^1.4",
"barryvdh/laravel-ide-helper": "2.9.*",
"squizlabs/php_codesniffer": "^3.5",
"fzaninotto/faker": "~1.8",
"php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.2",
"phpunit/php-code-coverage": "^9.2.5",
"orchestra/testbench": "^6.13.0",
"phpspec/prophecy": "^1.10.3"
},
"autoload": {
"psr-4": {
"RattfieldNz\\Shodan\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RattfieldNz\\Shodan\\Tests\\": "tests/"
}
},
"scripts": {
"phpunit": "phpunit",
"pre-install-cmd": [
"chmod u+rwx run_phpunit"
]
},
"extra": {
"laravel": {
"providers": [
"RattfieldNz\\Shodan\\ShodanServiceProvider"
],
"aliases": {
"Shodan": "RattfieldNz\\Shodan\\Facades\\ShodanFacade"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
}
}
}