Imported code from old repository

This commit is contained in:
2022-11-22 15:46:36 +01:00
parent 976fdc0199
commit 77cf9e05f1
91 changed files with 18969 additions and 2 deletions
+34
View File
@@ -0,0 +1,34 @@
.PHONY: all clean
all: stacks phpmae.phar
clean:
# Delete PHAR and stacks
rm *.phar
rm -rf stacks
composer.lock: composer.json
# Updating Dependencies with Composer
composer update -n -o
vendor: composer.lock
# Installing Dependencies with Composer
composer install -n -o
robo.phar:
# Get a copy of robo
wget http://robo.li/robo.phar
config.php: config.php.default
# Use .default if no other config provided
cp config.php.default config.php
stacks: robo.phar vendor
# Create stack directory
mkdir stacks
# Install default stack
php robo.phar install:stack coid://phpmae.dev/DefaultStack
phpmae.phar: phpmae.php config.php vendor RoboFile.php robo.phar
# Building archive with robo
php robo.phar phar