-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·46 lines (46 loc) · 1.02 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
{
"name": "cschalenborgh/laravel-ip-anonymizer",
"description": "IPv4 and IPv6 address anonymizer for Laravel",
"type": "library",
"keywords": [
"laravel",
"anonymizer",
"ip-anonymizer",
"gdpr"
],
"authors": [
{
"name": "Chris Schalenborgh",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Cschalenborgh\\IpAnonymizer\\": "src"
}
},
"scripts": {
"test": "phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Cschalenborgh\\IpAnonymizer\\IpAnonymizerServiceProvider"
],
"aliases": {
"IpAnonymizer": "Cschalenborgh\\IpAnonymizer\\IpAnonymizerFacade"
}
}
},
"license": "MIT",
"require-dev": {
"phpunit/phpunit": "^7.5"
},
"require": {
"php" : ">=7.1"
}
}