-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 2.23 KB
/
composer.json
File metadata and controls
72 lines (72 loc) · 2.23 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
{
"description": "Automatic content translations for Neos using the DeepL Api",
"type": "neos-package",
"name": "sitegeist/lostintranslation",
"license": "GPL-3.0-or-later",
"require": {
"php": ">=8.2.0",
"neos/neos": "^9.0.0",
"neos/contentrepository-core": "^9.0.0",
"neos/http-factories": "^9.0.0"
},
"autoload": {
"psr-4": {
"Sitegeist\\LostInTranslation\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Sitegeist\\LostInTranslation\\Tests\\": "Tests/"
}
},
"require-dev": {
"neos/buildessentials": "^9.0",
"squizlabs/php_codesniffer": "^3.7",
"phpunit/phpunit": "^9",
"mockery/mockery": "@stable",
"mikey179/vfsstream": "@stable",
"fakerphp/faker": "^1.23.0",
"phpstan/phpstan": "^2.0",
"neos/behat": "^9.0",
"neos/contentgraph-doctrinedbaladapter": "^9.0.0",
"neos/contentrepository-testsuite": "^9.0.0"
},
"scripts": {
"fix:style": "phpcbf --colors --standard=PSR12 Classes",
"test:style": "phpcs --colors -n --standard=PSR12 Classes",
"test:stan": "phpstan analyse Classes",
"test:unit": "bin/phpunit --bootstrap Tests/UnitTestBootstrap.php --configuration Tests/UnitTests.xml",
"test:functional": "bin/phpunit --bootstrap Tests/FunctionalTestBootstrap.php --configuration Tests/FunctionalTests.xml",
"test:behavior": "export FLOW_CONTEXT=Testing/Behat && behat -c Tests/Behavior/behat.yml.dist",
"cc": "phpstan clear cache",
"test": [
"composer install",
"composer test:style" ,
"composer test:stan",
"composer test:unit"
],
"fix": [
"conposer fix:style"
]
},
"extra": {
"neos": {
"package-key": "Sitegeist.LostInTranslation"
}
},
"config": {
"bin-dir": "bin",
"vendor-dir": "Packages/Libraries",
"allow-plugins": {
"neos/composer-plugin": true
}
},
"archive": {
"exclude": [
".editorconfig",
".gitattributes",
".github",
".gitignore"
]
}
}