-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.63 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
{
"name": "kdebisschop/php-etl-google-analytics-extractor",
"description": "Extract, Transform and Load data using this PHP written migration library.",
"keywords": ["etl", "extract", "transform", "load", "extraction", "transformation", "data", "symfony"],
"license": "MIT",
"authors": [
{
"name": "Karl DeBissvhop",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true
},
"require": {
"php": "^7.4 || ^8.0",
"google/apiclient": "^2.8",
"jangregor/phpstan-prophecy": "^0.8.1",
"wizaplace/php-etl": "^1.3"
},
"autoload": {
"psr-4": {
"PhpEtl\\GoogleAnalytics\\": "src/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.17",
"infection/infection": "^0.20.2",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-deprecation-rules": "^0.12",
"phpstan/phpstan-strict-rules": "^0.12",
"phpunit/phpunit": "^8.5",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload-dev": {
"psr-4": {
"PhpEtl\\GoogleAnalytics\\Tests\\": "tests/"
}
},
"scripts": {
"fix": "php-cs-fixer fix -v",
"fixer": "php-cs-fixer fix --dry-run --using-cache=no -v",
"cs": "phpcs -p -s",
"analyze": "phpstan --memory-limit=256M analyze",
"test": "phpunit",
"infection": "infection",
"scan": ["@fixer", "@cs", "@analyze"],
"check": ["@scan", "@test"]
},
"minimum-stability": "dev",
"prefer-stable": true
}