forked from madeITBelgium/Wappalyzer
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.19 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.19 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
{
"name": "madeitbelgium/wappalyzer",
"version": "1.0.2",
"description": "PHP Library that uncovers the technologies used on websites.",
"keywords": ["wappalyzer", "php", "laravel"],
"homepage": "http://www.madeit.be",
"type": "library",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Tjebbe Lievens - Made I.T.",
"homepage": "https://www.madeit.be",
"email": "tjebbe.lievens@madeit.be"
}
],
"require": {
"illuminate/support": "5.*|^6.0",
"illuminate/container": "5.*|^6.0",
"guzzlehttp/guzzle": "6.3.*",
"illuminate/validation": "5.*|^6.0",
"php": ">=7.0"
},
"require-dev": {
"phpunit/phpunit": "6.*|7.*",
"mockery/mockery": "0.9",
"php-coveralls/php-coveralls": "~2.1",
"friendsofphp/php-cs-fixer": "^2.12"
},
"autoload": {
"classmap": [
"src/"
],
"psr-4": {
"MadeITBelgium\\Wappalyzer\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"MadeITBelgium\\Wappalyzer\\WappalyzerServiceProvider"
],
"aliases": {
"Wappalyzer": "MadeITBelgium\\Wappalyzer\\WappalyzerFacade"
}
}
}
}