Skip to content

Commit

Permalink
Create GoogleAnalytics Extractor
Browse files Browse the repository at this point in the history
  • Loading branch information
Karl DeBisschop committed Nov 25, 2020
1 parent 9fbf526 commit 3623fc3
Show file tree
Hide file tree
Showing 10 changed files with 6,019 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/vendor/

/.idea/
52 changes: 52 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{
"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": "kdebisschop@gmail.com"
}
],
"config": {
"sort-packages": true
},
"require": {
"php": "~7.4",
"google/apiclient": "^2.8",
"wizaplace/php-etl": "^1.2"
},
"autoload": {
"psr-4": {
"PhpEtl\\GoogleAnalytics\\": "src/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"infection/infection": "^0.15.3",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^0.12.18",
"phpstan/phpstan-deprecation-rules": "^0.12.2",
"phpstan/phpstan-strict-rules": "^0.12.2",
"phpunit/phpunit": "^8.5",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"scan": [
"php-cs-fixer --dry-run -v --allow-risky=yes fix",
"phpcs",
"(cd tests && phpcs)",
"phpstan --memory-limit=256M analyze"
],
"test": "phpunit",
"check": ["@scan", "@test"]
},
"minimum-stability": "dev",
"prefer-stable": true
}
Loading

0 comments on commit 3623fc3

Please sign in to comment.