-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·58 lines (57 loc) · 1.54 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
{
"name": "macopedia/akeneo-openai-translator",
"type": "symfony-bundle",
"description": "OpenAI attributes translator for Akeneo",
"license": "OSL-3.0",
"authors": [
{
"name": "Piotr Musiał",
"email": "extensions@macopedia.pl",
"homepage": "https://macopedia.com/products/akeneo"
},
{
"name": "Daniel Rejman",
"email": "extensions@macopedia.pl",
"homepage": "https://macopedia.com/products/akeneo"
}
],
"autoload": {
"psr-0": {
"": "src/"
}
},
"require": {
"orhanerday/open-ai": "^4.7",
"akeneo/pim-community-dev": "^6.0.0||^7.0.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.15",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.0"
},
"scripts": {
"phpstan": [
"vendor/bin/phpstan analyse --configuration=\"config/phpstan.neon\""
],
"phpunit": [
"vendor/bin/phpunit --colors=always --configuration=\"config/phpunit.xml.dist\""
],
"cs:fix": [
"vendor/bin/php-cs-fixer fix --config=\"config/.php-cs-fixer.php\" --using-cache no --allow-risky=yes"
],
"test": [
"@cs:fix",
"@phpstan",
"@phpunit"
],
"post-install-cmd": [
"make upgrade-front"
]
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"symfony/flex": true
}
}
}