-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
68 lines (68 loc) · 2.09 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": "aic/data-hub-foundation",
"description": "Shared components for our data hub services.",
"type": "library",
"require": {
"php": "^8.2",
"composer": "^2.2.0",
"doctrine/dbal": "^3.0",
"friendsofphp/php-cs-fixer": "^3.5",
"guzzlehttp/guzzle": "^7.0",
"laravel/framework": "^11.0",
"league/fractal": "^0.16.0",
"netresearch/composer-patches-plugin": "^1.3.1",
"squizlabs/php_codesniffer": "^3.7"
},
"license": "AGPL-3.0",
"authors": [
{
"name": "Illya Moskvin",
"email": "[email protected]"
},
{
"name": "nikhil trivedi",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Aic\\Hub\\Foundation\\": "src/"
}
},
"scripts": {
"format": [
"phpcbf --standard=vendor/aic/data-hub-foundation/phpcs.dist.xml . || true",
"php-cs-fixer fix --diff --config vendor/aic/data-hub-foundation/.php-cs-fixer.dist.php || true"
],
"lint": [
"phpcs --standard=vendor/aic/data-hub-foundation/phpcs.dist.xml --warning-severity=0 ."
]
},
"extra": {
"laravel": {
"providers": [
"Aic\\Hub\\Foundation\\Providers\\FoundationServiceProvider"
]
},
"patches": {
"laravel/framework": [
{
"title": "API-227: Remove comments from migration stubs",
"url": "vendor/aic/data-hub-foundation/patches/API-227---remove-comments-from-migration-stubs.diff"
}
],
"doctrine/dbal": [
{
"title": "API-316: Support reorder of database columns",
"url": "vendor/aic/data-hub-foundation/patches/API-316---support-reorder-of-database-columns.diff"
}
]
}
},
"config": {
"allow-plugins": {
"netresearch/composer-patches-plugin": true
},
"sort-packages": true
}
}