-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.22 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.22 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
{
"name": "inisiatif/user",
"description": "User package using in Inisiatif Zakat Indonesia",
"license": "proprietary",
"type": "library",
"require": {
"php": "^8.1",
"jenssegers/agent": "^2.6",
"laravel/sanctum": "^3.0|^4.0",
"spatie/laravel-package-tools": "^1.15"
},
"require-dev": {
"laravel/pint": "^1.0",
"orchestra/testbench": "^9.0",
"psalm/plugin-laravel": "^2.9",
"roave/security-advisories": "dev-latest",
"vimeo/psalm": "^5.25"
},
"autoload": {
"psr-4": {
"Inisiatif\\Package\\User\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Inisiatif\\Package\\User\\Tests\\": "tests/"
}
},
"scripts": {
"analyse": "vendor/bin/psalm",
"test": "vendor/bin/phpunit",
"format": "vendor/bin/pint"
},
"extra": {
"laravel": {
"providers": [
"Inisiatif\\Package\\User\\UserServiceProvider"
]
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true
}