asherkin / steam-store-stats
This package is abandoned and no longer maintained.
No replacement package was suggested.
dev-default
2013-07-17 18:46 UTC
Requires
- monolog/monolog: ~1.0
- silex/silex: ~1.1.0
- silex/web-profiler: ~1.0.0@dev
- symfony/css-selector: ~2.3.0
- symfony/debug: ~2.3.0
- symfony/dom-crawler: ~2.3.0
- symfony/monolog-bridge: ~2.3.0
- symfony/twig-bridge: ~2.3.0
- twig/twig: ~1.8
This package is not auto-updated.
Last update: 2019-05-22 22:01:54 UTC
README
curl -sS https://getcomposer.org/installer | php
php composer.phar create-project --keep-vcs -s dev asherkin/steam-store-stats
cd steam-store-stats
cp app/config.dist.php app/config.php
vim app/config.php
chmod -R a+w logs cache
Update Instructions
cd steam-store-stats
hg pull -u
php ../composer.phar install
rm -rf cache/*
Virtual Host Configuration
<VirtualHost *:80>
ServerName steam-store-stats.example.com:80
DocumentRoot "/path/to/steam-store-stats/web"
<Location />
Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
</Location>
</VirtualHost>