-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
47 lines (47 loc) · 1.08 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
{
"name": "dnj/laravel-account",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1",
"dnj/laravel-currency": "^1.0.1",
"dnj/number": "^1.0.0",
"laravel/legacy-factories": "^1.3",
"dnj/laravel-user-logger": "^1.0.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.4.1",
"friendsofphp/php-cs-fixer": "^3.1",
"orchestra/testbench": "^7.0"
},
"autoload": {
"psr-4": {
"dnj\\Account\\": "src/",
"dnj\\Account\\Database\\Factories\\": "database/factories/"
}
},
"autoload-dev": {
"psr-4": {
"dnj\\Account\\Tests\\": "tests/"
}
},
"scripts": {
"test:types": "vendor/bin/phpstan analyze",
"test:phpunit": "vendor/bin/phpunit",
"test:codestyle": "vendor/bin/php-cs-fixer fix -v --dry-run --stop-on-violation --using-cache=no",
"test": [
"@test:types",
"@test:phpunit",
"@test:codestyle"
]
},
"extra": {
"laravel": {
"providers": [
"dnj\\Account\\AccountServiceProvider"
]
}
}
}