Skip to content
This repository was archived by the owner on Aug 3, 2022. It is now read-only.

Commit b341cc3

Browse files
author
Grant Kinney
committed
Initial commit
0 parents  commit b341cc3

File tree

4 files changed

+1646
-0
lines changed

4 files changed

+1646
-0
lines changed

.gitignore

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Always-ignore extensions #
2+
############################
3+
*.bak
4+
*.diff
5+
*.err
6+
*.orig
7+
*.log
8+
*.rej
9+
*.swo
10+
*.swp
11+
*.zip
12+
*.vi
13+
*~
14+
*.un~
15+
*.sass-cache
16+
17+
# OS generated files #
18+
######################
19+
*~
20+
.svn
21+
.cvs
22+
.DS_Store*
23+
._*
24+
.Spotlight-V100
25+
.Trashes
26+
Icon?
27+
ehthumbs.db
28+
Thumbs.db
29+
.cache
30+
.project
31+
.settings
32+
.tmproj
33+
*.esproj
34+
nbproject
35+
*.sublime*
36+
37+
# Folders to ignore #
38+
#####################
39+
.hg
40+
.svn
41+
.CVS
42+
.idea
43+
node_modules
44+
dist
45+
.rvmrc
46+
.vagrant
47+
vendor

Procfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
web: vendor/bin/heroku-php-nginx vendor/piwik/piwik

composer.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "creativecoder/piwik-analytics",
3+
"type": "project",
4+
"require": {
5+
"piwik/piwik": "^3.0",
6+
"php": "^7.1",
7+
"ext-curl": "*",
8+
"ext-gd": "*",
9+
"ext-xml": "*",
10+
"ext-mbstring": "*"
11+
},
12+
"license": "GPL-3.0",
13+
"authors": [
14+
{
15+
"name": "Grant Kinney",
16+
"email": "[email protected]"
17+
}
18+
],
19+
"minimum-stability": "stable"
20+
}

0 commit comments

Comments
 (0)