-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.18 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
{
"name": "multisolution/ads-warehouse",
"description": "Data warehouse for multi-data-source ads campaigns.",
"type": "project",
"require": {
"ext-pdo": "*",
"ext-json": "*",
"leocavalcante/siler": "dev-master",
"monolog/monolog": "^2.0",
"firebase/php-jwt": "^5.0",
"webonyx/graphql-php": "^0.13.8",
"google/apiclient": "^2.4",
"ramsey/uuid": "^3.8",
"facebook/php-business-sdk": "^5.0",
"swoole/ide-helper": "^4.4"
},
"require-dev": {
"phpunit/phpunit": "^8.4",
"vimeo/psalm": "^3.7",
"squizlabs/php_codesniffer": "^3.5",
"phpmd/phpmd": "^2.7"
},
"license": "MIT",
"authors": [
{
"name": "multisolution",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"AdsWarehouse\\": [
"src/"
]
},
"files": [
"src/helpers.php",
"lib/functions.php"
]
},
"scripts": {
"etl": "docker-compose exec -T server php bin/etl.php",
"analyze": "psalm"
}
}