-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
53 lines (53 loc) · 1.47 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
{
"name": "drradao/laravel-treasury",
"description": "A treasury package to manage internal currency of your app",
"type": "library",
"authors": [
{
"name": "David Adão",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"illuminate/support": "^9.0|^10.0",
"illuminate/database": "^9.0|^10.0"
},
"scripts": {
"lint": "@php vendor/bin/pint -v",
"test:lint": "@php vendor/bin/pint --test -v",
"test:types": "@php vendor/bin/phpstan analyse --ansi --memory-limit=2G",
"test:unit": "@php vendor/bin/pest -p --colors=always",
"test": [
"@test:lint",
"@test:types",
"@test:unit"
]
},
"license": "MIT",
"autoload": {
"psr-4": {
"DRRAdao\\LaravelTreasury\\": "src/",
"DRRAdao\\LaravelTreasury\\Database\\Factories\\": "database/factories/"
}
},
"autoload-dev": {
"psr-4": {
"DRRAdao\\LaravelTreasury\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"require-dev": {
"pestphp/pest": "^1.0",
"pestphp/pest-plugin-laravel": "^1.4",
"orchestra/testbench": "^8.21",
"pestphp/pest-plugin-parallel": "^1.2",
"laravel/pint": "^1.13",
"larastan/larastan": "^2.0"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}