├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── doc ├── installation.md └── usage.md ├── phpunit.xml.dist ├── src └── Widop │ └── GoogleAnalytics │ ├── Client.php │ ├── GoogleAnalyticsException.php │ ├── Query.php │ ├── Response.php │ └── Service.php └── tests ├── Widop └── Tests │ └── GoogleAnalytics │ ├── ClientTest.php │ ├── Fixtures │ ├── certificate.p12 │ └── invalid_format.p12 │ ├── QueryTest.php │ └── ServiceTest.php └── bootstrap.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widop/google-analytics/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widop/google-analytics/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widop/google-analytics/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widop/google-analytics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widop/google-analytics/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widop/google-analytics/HEAD/composer.json -------------------------------------------------------------------------------- /doc/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widop/google-analytics/HEAD/doc/installation.md -------------------------------------------------------------------------------- /doc/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widop/google-analytics/HEAD/doc/usage.md -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widop/google-analytics/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Widop/GoogleAnalytics/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widop/google-analytics/HEAD/src/Widop/GoogleAnalytics/Client.php -------------------------------------------------------------------------------- /src/Widop/GoogleAnalytics/GoogleAnalyticsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widop/google-analytics/HEAD/src/Widop/GoogleAnalytics/GoogleAnalyticsException.php -------------------------------------------------------------------------------- /src/Widop/GoogleAnalytics/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widop/google-analytics/HEAD/src/Widop/GoogleAnalytics/Query.php -------------------------------------------------------------------------------- /src/Widop/GoogleAnalytics/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widop/google-analytics/HEAD/src/Widop/GoogleAnalytics/Response.php -------------------------------------------------------------------------------- /src/Widop/GoogleAnalytics/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widop/google-analytics/HEAD/src/Widop/GoogleAnalytics/Service.php -------------------------------------------------------------------------------- /tests/Widop/Tests/GoogleAnalytics/ClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widop/google-analytics/HEAD/tests/Widop/Tests/GoogleAnalytics/ClientTest.php -------------------------------------------------------------------------------- /tests/Widop/Tests/GoogleAnalytics/Fixtures/certificate.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widop/google-analytics/HEAD/tests/Widop/Tests/GoogleAnalytics/Fixtures/certificate.p12 -------------------------------------------------------------------------------- /tests/Widop/Tests/GoogleAnalytics/Fixtures/invalid_format.p12: -------------------------------------------------------------------------------- 1 | Wid'op -------------------------------------------------------------------------------- /tests/Widop/Tests/GoogleAnalytics/QueryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widop/google-analytics/HEAD/tests/Widop/Tests/GoogleAnalytics/QueryTest.php -------------------------------------------------------------------------------- /tests/Widop/Tests/GoogleAnalytics/ServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widop/google-analytics/HEAD/tests/Widop/Tests/GoogleAnalytics/ServiceTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widop/google-analytics/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------