forked from teamneusta/pimcore-presentation-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
71 lines (71 loc) · 2.01 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
69
70
71
{
"name": "teamneusta/pimcore-presentation-bundle",
"type": "pimcore-bundle",
"description": "Allows to create online presentations in pimcore using reveal-js",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "team neusta GmbH",
"email": "[email protected]",
"homepage": "https://www.team-neusta.de/",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"pimcore/pimcore": "^10.0",
"symfony/config": "^5.3",
"symfony/console": "^5.3",
"symfony/dependency-injection": "^5.3",
"symfony/event-dispatcher": "^5.2",
"symfony/finder": "^5.2",
"symfony/http-kernel": "^5.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.11",
"jangregor/phpstan-prophecy": "^1.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-symfony": "^1.2",
"phpunit/phpunit": "^9.3"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"extra": {
"pimcore": {
"bundles": [
"Neusta\\Pimcore\\PresentationBundle\\NeustaPimcorePresentationBundle"
]
}
},
"autoload": {
"psr-4": {
"Neusta\\Pimcore\\PresentationBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Neusta\\Pimcore\\PresentationBundle\\Tests\\": "tests/"
}
},
"scripts": {
"cs:check": "php-cs-fixer fix -v --diff --dry-run",
"cs:fix": "php-cs-fixer fix -v --diff",
"phpstan": "phpstan analyse --level=${PHPSTAN_LEVEL:-8} -c phpstan.neon",
"phpstan:baseline": "phpstan analyse --level=${PHPSTAN_LEVEL:-8} -c phpstan.neon --generate-baseline",
"tests": "phpunit"
},
"scripts-descriptions": {
"cs:check": "Checks code style (but doesn't fix anything)",
"cs:fix": "Checks and fixes code style",
"phpstan": "Checks code against phpstan rules",
"tests": "runs all the phpunit tests"
}
}