-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit e857b1c
Showing
113 changed files
with
46,819 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
/vendor/ | ||
composer.phar | ||
/.idea/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"name": "stavarengo/language-detection-service", | ||
"description": "aaaaaaa", | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"type": "project", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Stavarengo", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"stavarengo/cld2-php-language-detection-library": "dev-master", | ||
"theiconic/php-ga-measurement-protocol": "^2.4" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Sta\\LanguageDetectionService\\": "src/LanguageDetectionService/" | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?php | ||
|
||
return [ | ||
'analytics-id' => 'UA-12926898-16', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
RewriteEngine on | ||
|
||
# The following rule tells Apache that if the requested filename | ||
# exists, simply serve it. | ||
RewriteCond %{REQUEST_FILENAME} -s [OR] | ||
RewriteCond %{REQUEST_FILENAME} -l [OR] | ||
RewriteCond %{REQUEST_FILENAME} -d | ||
RewriteRule ^.*$ - [NC,L] | ||
|
||
# The following rewrites all other queries to index.php. The | ||
# condition ensures that if you are using Apache aliases to do | ||
# mass virtual hosting, the base path will be prepended to | ||
# allow proper resolution of the index.php file; it will work | ||
# in non-aliased environments as well, providing a safe, one-size | ||
# fits all solution. | ||
RewriteCond %{REQUEST_URI}::$1 ^(/.+)(.+)::\2$ | ||
RewriteRule ^(.*) - [E=BASE:%1] | ||
RewriteRule ^(.*)$ %{ENV:BASE}index.php [NC,L] | ||
|
Oops, something went wrong.