forked from dshafik/bag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
71 lines (70 loc) · 1.84 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
69
70
71
{
"name": "dshafik/bag",
"description": "A comprehensive immutable value objects implementation",
"type": "library",
"require": {
"php": "^8.2|^8.3",
"brick/money": "^0.8.1 || ^0.9.0",
"illuminate/collections": "^10|^11",
"illuminate/database": "^10|^11",
"illuminate/support": "^10|^11",
"illuminate/validation": "^10|^11",
"prinsfrank/standards": "^3.8",
"ramsey/uuid": "^4.7",
"league/pipeline": "^1.0"
},
"require-dev": {
"captainhook/captainhook-phar": "^5.23",
"captainhook/hook-installer": "^1.0",
"fakerphp/faker": "^1.23",
"larastan/larastan": "^2.0",
"laravel/pint": "^1.15",
"orchestra/testbench": "^8.0|^9.0",
"phpunit/phpunit": "^10.5|^11",
"ramsey/conventional-commits": "dev-allow-sf-7",
"roave/security-advisories": "dev-latest",
"symfony/var-dumper": "*",
"infection/infection": "^0.28.1"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/llupa/conventional-commits.git"
}
],
"license": "MIT",
"autoload": {
"psr-4": {
"Bag\\": "src/Bag"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"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
}
}
}