-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
52 lines (52 loc) · 1.58 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
{
"name": "wernerkrauss/silverstripe-fluent-export-import",
"description": "File export and import for SilverStripe Fluent",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"extension",
"fluent",
"multilingual",
"i18n"
],
"license": "MIT",
"authors": [
{
"name": "Werner Krauß",
"email": "[email protected]",
"homepage": "http://www.netwerkstatt.at",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/wernerkrauss/silverstripe-fluent-export-import/issues"
},
"require": {
"php": "^8.2",
"ext-zip": "*",
"silverstripe/framework": "^5.2",
"tractorcow/silverstripe-fluent": "^7",
"lekoala/silverstripe-pure-modal": "^1.2.1",
"lekoala/silverstripe-cms-actions": "^1.7.5",
"openai-php/client": "^0.10"
},
"require-dev": {
"phpunit/phpunit": "^9",
"silverleague/ideannotator": "^3",
"squizlabs/php_codesniffer": "^3.6",
"wernerkrauss/silverstripe-rector": "^0.1"
},
"autoload": {
"psr-4": {
"Netwerkstatt\\FluentExportImport\\": "src/",
"Netwerkstatt\\FluentExportImport\\Tests\\": "tests/php/"
}
},
"scripts": {
"lint": "vendor/bin/phpcs",
"fix": "vendor/bin/phpcbf",
"rector": "vendor/bin/rector -v",
"rector-dry": "vendor/bin/rector -v --dry-run",
"phpstan": "vendor/bin/phpstan"
}
}