-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer-ci-laravel7.json
69 lines (69 loc) · 1.86 KB
/
composer-ci-laravel7.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
{
"name": "ngmy/eloquent-serialized-lob",
"description": "Eloquent Serialized LOB is a trait for Laravel Eloquent models that allows Serialized LOB pattern",
"keywords": [
"laravel",
"eloquent",
"serialized lob",
"semi-structured",
"json",
"xml"
],
"license": "MIT",
"authors": [
{
"name": "Yuta Nagamiya",
"email": "[email protected]"
}
],
"type": "library",
"require": {
"php": "^7.3|^8.0",
"doctrine/annotations": "^1.11.1",
"illuminate/support": "^7.0",
"jms/serializer": "^3.11.0"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "2.9.0",
"nunomaduro/larastan": "0.6.11",
"orchestra/testbench": "5.12.1"
},
"extra": {
"laravel": {
"providers": [
"Ngmy\\EloquentSerializedLob\\EloquentSerializedLobServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"Ngmy\\EloquentSerializedLob\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Ngmy\\EloquentSerializedLob\\Tests\\": "tests",
"Ngmy\\EloquentSerializedLob\\Tests\\SampleProjects\\IssueDatabase\\": "tests/sample_projects/issue_database",
"Ngmy\\EloquentSerializedLob\\Tests\\SampleProjects\\OrganizationHierarchy\\": "tests/sample_projects/organization_hierarchy"
},
"classmap": [
"tests/database/migrations"
]
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": [
"@php tools/phpunit --colors=always"
],
"lint": [
"@php tools/phpcs --colors"
],
"findbugs": [
"@php tools/phpstan analyse --ansi"
]
}
}