-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 2.04 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
{
"name": "eurotext/translationmanager",
"description": "WordPress plugin for translating content from your WordPress Multisite via Eurotext.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"config": {
"sort-packages": true,
"preferred-install": {
"inpsyde/multilingualpress": "dist"
},
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"oomphinc/composer-installers-extender": true,
"barryvdh/composer-cleanup-plugin": true
}
},
"authors": [
{
"name": "Inpsyde GmbH",
"homepage": "https://inpsyde.com/",
"email": "[email protected]",
"role": "Company"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.2 | ^8.0",
"ext-fileinfo": "*",
"brain/nonces": "1.0.*",
"pimple/pimple": "^3.2",
"webmozart/assert": "^1.4",
"ext-simplexml": "*",
"ext-zip": "*",
"composer/installers": "^1.0 || ^2.0"
},
"require-dev": {
"php-stubs/wordpress-stubs": "^5.0@stable",
"barryvdh/composer-cleanup-plugin": "^0.2.0 || ^0.4.0",
"brain/monkey": "~2.3",
"inpsyde/php-coding-standards": "^1.0",
"phpunit/phpunit": "^8.0 | ^9.0",
"vimeo/psalm": "^4.0",
"oomphinc/composer-installers-extender": "^2"
},
"autoload": {
"psr-4": {
"Translationmanager\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TranslationmanagerTests\\": "tests/php",
"TranslationmanagerTests\\Unit\\": "tests/php/unit/src",
"TranslationmanagerTests\\Functional\\": "tests/php/Functional/src",
"TranslationmanagerTests\\Integration\\": "tests/php/integration/src"
}
},
"extra": {
"installer-paths": {
"vendor/{$vendor}/{$name}": ["type:wordpress-plugin"]
}
}
}