-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
executable file
·76 lines (76 loc) · 2.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "prestashop/module-translation-tool",
"description": "A CLI tool to extract a module's translations from sources and export them to a git branch.",
"license": "proprietary",
"type": "project",
"require": {
"php": ">=7.2.5",
"ext-zip": "*",
"czproject/git-php": "^4.0",
"doctrine/annotations": "^1.13",
"doctrine/doctrine-cache-bundle": "^1.2",
"google/cloud-storage": "^1.28",
"guzzlehttp/guzzle": "^7.0.1",
"incenteev/composer-parameter-handler": "^2.0",
"prestashop/translationtools-bundle": "^5.0",
"symfony/monolog-bundle": "^3.7.0",
"symfony/symfony": "^4.4",
"knplabs/github-api": "^3.0",
"http-interop/http-factory-guzzle": "^1.0",
"cache/filesystem-adapter": "^1.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.8",
"friendsofphp/php-cs-fixer": "^2.16.1",
"phpstan/phpstan": "^1.8",
"symfony/phpunit-bridge": "^5.0",
"phpunit/phpunit": "^8.5"
},
"autoload": {
"psr-4": {
"AppBundle\\": "src/AppBundle/"
},
"classmap": [
"app/AppKernel.php",
"app/AppCache.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"platform": {
"php": "7.2.5"
}
},
"extra": {
"incenteev-parameters": {
"file": "app/config/parameters.yml"
},
"symfony-app-dir": "app",
"symfony-assets-install": "relative",
"symfony-bin-dir": "bin",
"symfony-tests-dir": "tests",
"symfony-var-dir": "var",
"symfony-web-dir": "web"
},
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"composer dump-autoload",
"@php bin/console cache:clear --env prod",
"@php bin/console cache:clear --env dev"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"composer dump-autoload",
"@php bin/console cache:clear --env prod",
"@php bin/console cache:clear --env dev"
]
}
}