-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathcomposer.json
More file actions
107 lines (107 loc) · 4.12 KB
/
composer.json
File metadata and controls
107 lines (107 loc) · 4.12 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "ibexa/documentation-developer",
"description": "This repository is the source for the developer documentation for eZ Platform, an open source CMS based on the Symfony Full Stack Framework in PHP.",
"type": "library",
"license": "GNU General Public License v2.0",
"autoload-dev": {
},
"repositories": [
{
"type": "composer",
"url": "https://updates.ibexa.co"
}
],
"require": {
"php": "^8.3"
},
"require-dev": {
"ibexa/automated-translation": "5.0.x-dev",
"ibexa/code-style": "~2.0.0",
"friendsofphp/php-cs-fixer": "^3.30",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"ibexa/doctrine-schema": "5.0.x-dev",
"ibexa/search": "5.0.x-dev",
"ibexa/content-forms": "5.0.x-dev",
"ibexa/design-engine": "5.0.x-dev",
"ibexa/user": "5.0.x-dev",
"ibexa/notifications": "5.0.x-dev",
"ibexa/product-catalog-date-time-attribute": "5.0.x-dev",
"ibexa/fieldtype-richtext": "5.0.x-dev",
"ibexa/rector": "5.0.x-dev",
"ibexa/rest": "5.0.x-dev",
"ibexa/http-cache": "5.0.x-dev",
"ibexa/core-persistence": "5.0.x-dev",
"ibexa/connector-ai": "5.0.x-dev",
"ibexa/connector-openai": "5.0.x-dev",
"ibexa/migrations": "5.0.x-dev",
"ibexa/cart": "5.0.x-dev",
"ibexa/installer": "5.0.x-dev",
"ibexa/product-catalog": "5.0.x-dev",
"ibexa/graphql": "5.0.x-dev",
"ibexa/personalization": "5.0.x-dev",
"ibexa/taxonomy": "5.0.x-dev",
"ibexa/scheduler": "5.0.x-dev",
"ibexa/cron": "5.0.x-dev",
"ibexa/dashboard": "5.0.x-dev",
"ibexa/corporate-account": "5.0.x-dev",
"ibexa/fieldtype-address": "5.0.x-dev",
"ibexa/segmentation": "5.0.x-dev",
"ibexa/fieldtype-page": "5.0.x-dev",
"ibexa/page-builder": "5.0.x-dev",
"ibexa/order-management": "5.0.x-dev",
"ibexa/calendar": "5.0.x-dev",
"ibexa/payment": "5.0.x-dev",
"ibexa/shipping": "5.0.x-dev",
"ibexa/fieldtype-matrix": "5.0.x-dev",
"ibexa/storefront": "5.0.x-dev",
"ibexa/seo": "5.0.x-dev",
"ibexa/core": "5.0.x-dev",
"ibexa/admin-ui": "5.0.x-dev",
"ibexa/activity-log": "5.0.x-dev",
"ibexa/workflow": "5.0.x-dev",
"ibexa/checkout": "5.0.x-dev",
"ibexa/elasticsearch": "5.0.x-dev",
"ibexa/oauth2-client": "5.0.x-dev",
"ibexa/oauth2-server": "5.0.x-dev",
"ibexa/form-builder": "5.0.x-dev",
"ibexa/solr": "5.0.x-dev",
"ibexa/version-comparison": "5.0.x-dev",
"league/oauth2-google": "^4.0",
"ibexa/connector-dam": "~5.0.x-dev",
"ibexa/twig-components": "~5.0.x-dev",
"ibexa/tree-builder": "~5.0.x-dev",
"ibexa/discounts": "~5.0.x-dev",
"ibexa/discounts-codes": "~5.0.x-dev",
"ibexa/core-search": "~5.0.x-dev",
"ibexa/product-catalog-symbol-attribute": "~5.0.x-dev",
"ibexa/messenger": "~5.0.x-dev",
"ibexa/collaboration": "~5.0.x-dev",
"ibexa/share": "~5.0.x-dev",
"ibexa/phpstan": "~5.0.-dev",
"ibexa/connector-quable": "5.0.x-dev",
"ibexa/shopping-list": "~5.0.x-dev",
"deptrac/deptrac": "^3.0",
"ibexa/cdp": "~5.0.x-dev",
"ibexa/connector-raptor": "~5.0.x-dev",
"ibexa/image-editor": "~5.0.x-dev",
"ibexa/integrated-help": "~5.0.x-dev"
},
"scripts": {
"fix-cs": "php-cs-fixer fix --config=.php-cs-fixer.php -v --show-progress=dots",
"check-cs": "@fix-cs --dry-run",
"phpstan": "phpstan analyse",
"deptrac": "deptrac analyse",
"check-rector": "rector process --dry-run --ansi"
},
"scripts-descriptions": {
"fix-cs": "Automatically fixes code style in all files",
"check-cs": "Run code style checker for all files",
"phpstan": "Run static code analysis",
"deptrac": "Run Deptrac architecture testing",
"check-rector": "Check for code refactoring opportunities"
},
"config": {
"allow-plugins": false
}
}