Skip to content

Instantly share code, notes, and snippets.

View isluewell's full-sized avatar
💭
👨‍💻 Programming 👩‍💻

Luewell .dev isluewell

💭
👨‍💻 Programming 👩‍💻
View GitHub Profile
@isluewell
isluewell / Dockerfile
Last active September 17, 2019 00:11
Php 7.2 for Laravel with Apache2
FROM ubuntu:18.04
LABEL maintainer="support@luewell.com"
MAINTAINER support@luewell.com
EXPOSE 80
EXPOSE 443
RUN apt-get update && apt-get dist-upgrade -y
@isluewell
isluewell / AppName.php
Last active May 11, 2023 12:18
[6.0] Command app:name
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Support\Composer;
use Symfony\Component\Finder\Finder;
use Illuminate\Filesystem\Filesystem;
use Symfony\Component\Console\Input\InputArgument;