-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
49 lines (49 loc) · 1.05 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
{
"name": "macopedia/akeneo-product-translation",
"type": "symfony-bundle",
"description": "Translation extension for Akeneo",
"version": "0.2.2",
"license": "OSL-3.0",
"authors": [
{
"name": "Piotr Musiał",
"email": "[email protected]",
"homepage": "https://macopedia.com/products/akeneo"
}
],
"require": {
"akeneo/pim-community-dev": "^4.0.0||^5.0.0||^6.0.0",
"google/cloud-translate": "^1.9"
},
"require-dev": {
"phpunit/phpunit": "^9",
"phpstan/phpstan": "^0.12.68",
"friendsofphp/php-cs-fixer": "^2.18"
},
"autoload": {
"psr-4": {
"Macopedia\\Translator\\": "src/"
}
},
"scripts": {
"phpstan": [
"vendor/bin/phpstan --configuration=phpstan.neon"
],
"phpunit": [
"vendor/bin/phpunit --colors=always"
],
"test": [
"vendor/bin/php-cs-fixer fix --dry-run",
"@phpstan",
"@phpunit"
],
"cs:fix": [
"vendor/bin/php-cs-fixer fix"
]
},
"config": {
"allow-plugins": {
"symfony/flex": true
}
}
}