-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
36 lines (36 loc) · 864 Bytes
/
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
{
"name": "thybag/pseudo-model",
"description": "PseudoModel is an eloquent like model base for backing on to custom data structures.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Carl Saggs",
"email": "carl@saggs.co.uk"
}
],
"autoload": {
"psr-4": {
"thybag\\PseudoModel\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"thybag\\PseudoModel\\Test\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"thybag\\PseudoModel\\PseudoModelProvider"
]
}
},
"require": {},
"require-dev": {
"phpunit/phpunit": "^9",
"orchestra/testbench": "^8",
"squizlabs/php_codesniffer": "^3.3",
"mockery/mockery": "^1.1"
}
}