-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
85 lines (85 loc) · 2.08 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
77
78
79
80
81
82
83
84
85
{
"name": "valantic/pimcore-elastica-bridge",
"version": "4.3.0",
"description": "Elastica bridge for Pimcore",
"type": "pimcore-bundle",
"require": {
"php": "^8.1",
"ext-json": "*",
"pimcore/pimcore": "^11.0",
"psr/log": "^3.0",
"ruflin/elastica": "^8.0.0",
"symfony/console": "^6.2",
"symfony/lock": "^6.2"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8.2",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^1.12.16",
"phpstan/phpstan-deprecation-rules": "^1.2.1",
"phpstan/phpstan-strict-rules": "^1.6.2",
"rector/rector": "^1.2.10",
"roave/security-advisories": "dev-latest",
"sentry/sentry": "^4.10.0",
"symfony/http-client": "^6.4.18"
},
"license": "MIT",
"authors": [
{
"name": "Linus Metzler",
"email": "[email protected]"
},
{
"name": "Patrick Ryser",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Valantic\\ElasticaBridgeBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\": "docs/example/src/",
"Pimcore\\Model\\DataObject\\": "docs/example/var/classes/DataObject/"
}
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": true
}
},
"scripts": {
"post-install-cmd": [
"@composer bin all install --ansi"
],
"post-update-cmd": [
"@composer bin all update --ansi",
"@composer bin all bump",
"@composer bump --dev-only"
],
"phpstan": [
"./vendor/bin/phpstan analyse --memory-limit=1G"
],
"php-cs-fixer": [
"./vendor-bin/phpcs/vendor/bin/php-cs-fixer fix --diff"
],
"php-cs-fixer-check": [
"./vendor-bin/phpcs/vendor/bin/php-cs-fixer fix --diff --dry-run"
],
"rector": [
"./vendor/bin/rector process src"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"ocramius/package-versions": true,
"phpstan/extension-installer": true,
"php-http/discovery": true
}
}
}