-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
68 lines (67 loc) · 1.87 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "dshafik/bag",
"description": "A comprehensive immutable value objects implementation",
"type": "library",
"require": {
"php": "^8.2|^8.3|^8.4",
"brick/money": "^0.8.1 || ^0.9.0 || ^0.10.0",
"illuminate/collections": "^10|^11",
"illuminate/database": "^10|^11",
"illuminate/support": "^10|^11",
"illuminate/validation": "^10|^11",
"nette/php-generator": "^4.1",
"prinsfrank/standards": "^3.8",
"ramsey/uuid": "^4.7",
"league/pipeline": "^1.0"
},
"require-dev": {
"captainhook/captainhook-phar": "^5.23",
"captainhook/hook-installer": "^1.0",
"larastan/larastan": "^2.0",
"laravel/pint": "^1.15",
"laravel/prompts": "^0.1.25 || ^0.2.0 || ^0.3.0",
"orchestra/pest-plugin-testbench": "^2.0|^3.0",
"pestphp/pest": "^2.0|^3.0",
"pestphp/pest-plugin-faker": "^2.0|^3.0",
"pestphp/pest-plugin-type-coverage": "^2.0|^3.0",
"ramsey/conventional-commits": "^1.5.1",
"roave/security-advisories": "dev-latest",
"symfony/var-dumper": "*"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Bag\\": "src/Bag"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"scripts": {
"test": "pest",
"style": "pint"
},
"extra" : {
"laravel" : {
"providers" : [
"\\Bag\\BagServiceProvider"
]
}
},
"authors": [
{
"name": "Davey Shafik",
"email": "[email protected]"
}
],
"config": {
"allow-plugins": {
"captainhook/captainhook-phar": true,
"captainhook/hook-installer": true,
"infection/extension-installer": true,
"pestphp/pest-plugin": true
}
}
}