rceman / copper_skeleton
A minimal Copper project recommended to create bare bones applications
v1.0.5
2020-11-26 21:20 UTC
Requires
- php: >=7.0
- rceman/copper: v1.0.13
This package is auto-updated.
Last update: 2025-03-29 01:10:04 UTC
README
The Copper Skeleton is a minimal and empty Copper project which you can base your new projects on.
Requirements
- PHP 7.0 or higher
Installation
composer create-project rceman/copper_skeleton app
Usage
Configure a web server like Apache to run the application.
Apache with mod_php/PHP-CGI
The optimized configuration to get your application running under Apache is:
<VirtualHost *:80>
ServerName domain.tld
ServerAlias www.domain.tld
DocumentRoot /var/www/project/public
<Directory /var/www/project/public>
AllowOverride None
Order Allow,Deny
Allow from All
FallbackResource /index.php
</Directory>
ErrorLog /var/log/apache2/project_error.log
CustomLog /var/log/apache2/project_access.log combined
</VirtualHost>