-
Notifications
You must be signed in to change notification settings - Fork 46
/
composer.json
124 lines (124 loc) · 3.92 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "supla/supla-cloud",
"license": "GPL-2.0+",
"type": "project",
"description": "SUPLA-CLOUD is a central point joining the executive devices for indirect and direct operation of your household or office appliances and other elements with client applications which you can install on your tablets and smartphones.",
"autoload": {
"psr-4": {
"Supla\\Migrations\\": "app/DoctrineMigrations",
"": "src/"
},
"classmap": [
"app/AppKernel.php",
"app/AppCache.php"
]
},
"require": {
"php": ">=7.4.33",
"ext-curl": "*",
"ext-gd": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-zip": "*",
"composer-runtime-api": "^2",
"beberlei/assert": "^2.7",
"cocur/slugify": "^2.3",
"doctrine/doctrine-bundle": "^2.7.0",
"doctrine/doctrine-migrations-bundle": "^3.1",
"doctrine/orm": "^2.5",
"dragonmantank/cron-expression": "3.1.*",
"friendsofsymfony/oauth-server-bundle": "dev-master",
"friendsofsymfony/rest-bundle": "^2.7",
"google/recaptcha": "^1.1",
"gumlet/php-image-resize": "^2.0",
"incenteev/composer-parameter-handler": "~2.0",
"myclabs/php-enum": "1.5.*",
"nelmio/cors-bundle": "^1.5",
"sensio/framework-extra-bundle": "^5.0",
"symfony/messenger": "^4.4",
"symfony/monolog-bundle": "^3.2",
"symfony/polyfill-apcu": "^1.0",
"symfony/swiftmailer-bundle": "^3.0",
"symfony/symfony": "^4.4",
"twig/intl-extra": "^3.3",
"twig/twig": "^3.3",
"ua-parser/uap-php": "^3.9",
"zircote/swagger-php": "^4.0"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^3.2",
"fakerphp/faker": "^1.23",
"phpunit/phpunit": "^8.0",
"squizlabs/php_codesniffer": "^3.6",
"symfony/phpunit-bridge": "^4.4"
},
"scripts": {
"dump-version": [
"SuplaBundle\\DependencyInjection\\GitVersionDumper::dumpVersion"
],
"build-parameters": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
],
"post-install-cmd": [
"@build-parameters",
"@dump-version"
],
"post-update-cmd": [
"@build-parameters",
"@dump-version"
],
"test": [
"phpunit -c app --testdox"
],
"lint-backend": [
"phpcs src/SuplaBundle --standard=app/phpcs-rules.xml"
],
"lint-frontend": [
"cd src/frontend && npm run lint -s"
],
"lint": [
"@lint-frontend",
"@lint-backend"
],
"phpcbf": [
"phpcbf src/SuplaBundle --standard=app/phpcs-rules.xml"
],
"webpack": [
"cd src/frontend && npm install",
"cd src/frontend && npm run build"
],
"release": [
"@dump-version",
"composer install --no-dev --optimize-autoloader",
"composer run-script webpack",
"cd src/frontend && npm run release"
],
"release-dev": [
"@dump-version",
"composer install --optimize-autoloader",
"composer run-script webpack",
"cd src/frontend && npm run release-dev"
],
"collect-translations": [
"cd src/frontend && npm run collect-translations"
]
},
"config": {
"platform": {
"php": "7.4.33"
},
"process-timeout": 0,
"sort-packages": true
},
"extra": {
"symfony-app-dir": "app",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-web-dir": "web",
"symfony-tests-dir": "tests",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
}
}
}