-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 911 Bytes
/
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
{
"name": "bagart/FinXLog",
"description": "PHP loader financial quotation and show graph",
"homepage": "https://github.com/bagart/FinXLog",
"license": "MIT",
"authors": [
{
"name": "Baltaev Artur",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"vlucas/phpdotenv": "^2.2",
"clue/socket-raw": "~1.2",
"pda/pheanstalk": "^3.1",
"ruflin/Elastica": "^3.2",
"monolog/monolog": "^1.19",
"cboden/ratchet": "^0.3.5",
"ratchet/pawl": "^0.2.2"
},
"require-dev": {
"phpunit/phpunit": "4.7.*"
},
"autoload": {
"psr-4": {
"FinXLog\\": "src/Classes/"
},
"files": [
"config/app.php"
]
},
"scripts": {
"post-install-cmd": [
"cp .env.example .env",
"php command/setup/web_config_build.php"
],
"post-update-cmd": [
"php command/setup/web_config_build.php"
]
}
}