-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
61 lines (61 loc) · 1.73 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
{
"name": "mike4git/umlgeneration-bundle",
"description": "UML Generation Bundle",
"type": "pimcore-bundle",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Michael Albrecht",
"email": "[email protected]",
"homepage": "https://team-neusta.de/",
"role": "Developer"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"autoload": {
"psr-4": {
"UMLGenerationBundle\\": "src"
},
"exclude-from-classmap": [
"/tests/"
]
},
"autoload-dev": {
"psr-4": {
"UMLGenerationBundle\\Tests\\Data\\": "tests/Data/",
"UMLGenerationBundle\\Tests\\Unit\\": "tests/Unit/",
"UMLGenerationBundle\\Tests\\Integration\\": "tests/Integration/"
}
},
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
"pimcore/pimcore": "^10.0 || ^11.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"phpspec/prophecy": "^1.11",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "^1.1",
"jangregor/phpstan-prophecy": "^1.0",
"phpunit/phpunit": "^9.5"
},
"extra": {
"pimcore": {
"bundles": [
"UMLGenerationBundle"
]
}
},
"scripts": {
"cs:fix": "php-cs-fixer fix",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"phpstan": "phpstan analyse --level=${PHPSTAN_LEVEL:-8} -c phpstan.neon",
"phpstan-gitlab": "phpstan analyse -c phpstan.neon --memory-limit=1G --no-progress --level=${PHPSTAN_LEVEL:-8} --error-format=gitlab > reports/codeclimate.json",
"tests": "phpunit --coverage-text --colors=never --log-junit=reports/junit.xml --coverage-clover=reports/clover.xml --coverage-html=reports/coverage tests"
}
}