-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.25 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.25 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
{
"name": "smartling/wordpress-connector",
"license": "GPL-2.0-or-later",
"version": "5.3.5",
"description": "",
"type": "wordpress-plugin",
"repositories": [
{
"type": "github",
"url": "https://github.com/vsolovei-smartling/namespacer"
}
],
"require": {
"galbar/jsonpath": "^2.0",
"jralph/retry": "3.0.0",
"php": ">=8.0",
"monolog/monolog": "~1",
"symfony/cache": "~5.4",
"symfony/dependency-injection": "~5.4",
"symfony/expression-language": "~5.4",
"symfony/config": "~5.4",
"symfony/yaml": "~5.4",
"smartling/api-sdk-php": "5.0.5",
"ext-dom": "*",
"ext-libxml": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "~9",
"vsolovei-smartling/namespacer": "dev-master"
},
"config": {
"vendor-dir": "inc/third-party"
},
"autoload-dev": {
"psr-4": {
"Smartling\\Tests\\": "tests/"
}
},
"autoload": {
"psr-0": {
"Smartling": "inc/"
}
},
"scripts": {
"post-install-cmd": [
],
"post-update-cmd": [
"./inc/third-party/vsolovei-smartling/namespacer/bin/namespacer --composer ./composer.json --package smartling-connector --namespace \"Smartling\\Vendor\" inc",
"php fix-double-namespace.php"
]
}
}