-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
64 lines (64 loc) · 1.94 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
{
"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.1.0",
"neos/neos": "^7.3 || ^8.0 || dev-master",
"neos/neos-ui": "^7.3 || ^8.0 || dev-master",
"neos/http-factories": "^7.3 || ^8.0 || dev-master"
},
"autoload": {
"psr-4": {
"Sitegeist\\LostInTranslation\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Sitegeist\\LostInTranslation\\Tests\\": "Tests/"
}
},
"require-dev": {
"phpstan/phpstan": "1.10.37",
"squizlabs/php_codesniffer": "^3.7",
"phpunit/phpunit": "^9",
"mockery/mockery": "@stable",
"mikey179/vfsstream": "@stable",
"fakerphp/faker": "^1.23.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",
"cc": "phpstan clear cache",
"test": [
"composer install",
"composer test:style" ,
"composer test:stan",
"composer test:unit"
]
},
"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"
]
}
}