-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.26 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.26 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
48
49
50
{
"name": "jeoip/server",
"keywords": ["geoip", "location", "lumen"],
"license": "MIT",
"type": "project",
"require": {
"php": "^8.1",
"laravel/lumen-framework": "^9.0",
"jeoip/ip2location": "^1.1.0"
},
"require-dev": {
"fakerphp/faker": "^1.9.1",
"mockery/mockery": "^1.4.4",
"phpunit/phpunit": "^9.5.10",
"phpstan/phpstan": "^1.4.1",
"friendsofphp/php-cs-fixer": "^3.1",
"nunomaduro/larastan": "^2.0"
},
"autoload": {
"psr-4": {
"Jeoip\\Server\\": "src/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Jeoip\\Server\\AppServiceProvider"
]
}
}
}