-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
57 lines (57 loc) · 1.45 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
{
"name": "schulzefelix/laravel-stat-search-analytics",
"type": "library",
"description": "A Laravel API Wrapper For STAT Search Analytics.",
"keywords": [
"schulzefelix",
"stat-search-analytics",
"laravel",
"keyword rankings",
"keyword tracking"
],
"homepage": "https://github.com/schulzefelix/laravel-stat-search-analytics",
"license": "MIT",
"authors": [
{
"name": "Felix Schulze",
"email": "[email protected]",
"homepage": "https://schulze.co",
"role": "Developer"
}
],
"require": {
"php": "^7.2.5",
"laravel/framework": "^7.0",
"guzzlehttp/guzzle": "^6.3",
"nesbot/carbon": "^2.0",
"schulzefelix/laravel-data-transfer-object": "^1.3.0"
},
"require-dev": {
"mockery/mockery": "^1.3",
"orchestra/testbench": "^4.0|^5.0",
"phpunit/phpunit" : "^8.0|^9.0"
},
"autoload": {
"psr-4": {
"SchulzeFelix\\Stat\\": "src"
}
},
"extra":{
"laravel":{
"providers":[
"SchulzeFelix\\Stat\\StatServiceProvider"
],
"aliases":{
"Stat": "SchulzeFelix\\Stat\\StatFacade"
}
}
},
"autoload-dev": {
"psr-4": {
"SchulzeFelix\\Stat\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
}
}