-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
executable file
·53 lines (53 loc) · 1.25 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
{
"name": "gpupo/common-schema",
"description": "Common schema",
"homepage": "https://opensource.gpupo.com/common-schema/",
"authors": [
{
"name": "Gilmar Pupo",
"email": "[email protected]"
}
],
"keywords": ["sphinx", "schema", "xml", "xmlpipe2", "order"],
"license": "MIT",
"autoload": {
"psr-4": {
"Gpupo\\CommonSchema\\": "src",
"Gpupo\\CommonSchema\\Build\\": "build"
}
},
"autoload-dev": {
"psr-4": {
"Gpupo\\CommonSchema\\Tests\\": "tests",
"App\\": "build"
}
},
"require-dev": {
"gpupo/common-dev": "dev-main"
},
"bin": ["bin/common-schema"],
"config": {
"preferred-install": "dist"
},
"scripts": {
"test": "phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.0",
"gpupo/common": "^5.6 || ^6.0 || dev-main",
"gpupo/common-sdk": "^6.4 || dev-main"
},
"replace": {
"gpupo/common-schema": "*"
},
"extra": {
"branch-alias": {
"dev-main": "7.0-dev"
}
},
"suggest": {
"gedmo/doctrine-extensions": "^2.4 || ^3.0 || dev-main"
}
}