forked from nahati/contao-isotope-stock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 2.42 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
72
73
74
75
76
{
"name": "nahati/contao-isotope-stock",
"description": "A stock management for Contao / Isotope",
"license": "LGPL-3.0-or-later",
"type": "contao-bundle",
"authors": [
{
"name": "Ernst Jendritzki",
"email": "[email protected]",
"homepage": "https://www.nachhaltig-im-web.de"
},
{
"name": "Benny Born and Michael Bösherz, numero2",
"role": "authors of numero2/contao-isotope-simple-erp v1.0.4, which was taken as basis for this extension"
}
],
"support": {
"issues": "https://github.com/nahati/contao-isotope-stock/issues",
"source": "https://github.com/nahati/contao-isotope-stock"
},
"require": {
"PHP": "^8.1",
"contao/core-bundle": "^4.13.16",
"isotope/isotope-core": "^2.8.10",
"symfony/config": "^5.4",
"symfony/dependency-injection": "^5.4",
"symfony/http-kernel": "^5.4"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.5",
"contao/manager-plugin": "^2.0",
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "^6.1",
"contao/phpstan": "@dev"
},
"conflict": {
"contao/manager-plugin": "<2.0 || >=3.0"
},
"autoload": {
"psr-4": {
"nahati\\ContaoIsotopeStockBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"nahati\\ContaoIsotopeStockBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"contao-components/installer": true,
"contao/manager-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"contao-community-alliance/composer-plugin": true,
"php-http/discovery": true
}
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"target-directory": "tools"
},
"contao-manager-plugin": "nahati\\ContaoIsotopeStockBundle\\ContaoManager\\Plugin"
},
"scripts": {
"all": [
"@unit-tests",
"@ecs",
"@phpstan"
],
"ecs": "@php tools/ecs/vendor/bin/ecs check src tests --config ecs.php --fix --ansi",
"phpstan": "@php tools/phpstan/vendor/bin/phpstan analyze --ansi",
"unit-tests": "@php vendor/bin/phpunit --colors=always"
}
}