-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.51 KB
/
Copy pathcomposer.json
File metadata and controls
49 lines (49 loc) · 1.51 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
{
"name": "leleko/vesp-telegram",
"license": "MIT",
"description": "Vesp Telegram Bot Manager",
"authors": [
{
"name": "Sergey S. Leleko",
"email": "w@leleko.ru"
}
],
"autoload": {
"psr-4": {
"App\\": "core/src/"
}
},
"require": {
"ext-json": "*",
"akrabat/ip-address-middleware": "^2.1",
"peppeocchi/php-cron-scheduler": "^4.0",
"vesp/core": "^2.7.2",
"longman/telegram-bot": "^0.80.0",
"monolog/monolog": "^2.8"
},
"require-dev": {
"itsgoingd/clockwork": "^4.1"
},
"config": {
"sort-packages": true,
"vendor-dir": "core/vendor"
},
"scripts": {
"db:migrate": "cd core && vendor/bin/phinx migrate",
"db:rollback": "cd core && vendor/bin/phinx rollback",
"db:seed": "cd core && vendor/bin/phinx seed:run",
"node:install": "cd frontend && (yarn install || npm install)",
"node:update": "cd frontend && (yarn upgrade || npm update)",
"node:analyze": "cd frontend && (yarn analyze || npm analyze)",
"node:dev": "cd frontend && (yarn dev || npm dev)",
"node:build": "cd frontend && (yarn build || npm build)",
"node:generate": "cd frontend && (yarn generate || npm generate)",
"node:start": "cd frontend && (yarn start || npm start)",
"node:stop": "cd frontend && (yarn stop || npm stop)",
"node:restart": "cd frontend && (yarn restart || npm restart)",
"post-create-project-cmd": [
"@php -r \"file_exists('.env') || copy('.env.dist', '.env');\"",
"@composer node:install"
]
}
}