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="[email protected]"
MAINTAINER [email protected]
EXPOSE 80
EXPOSE 443
RUN apt-get update && apt-get dist-upgrade -y
@isluewell
isluewell / AppName.php
Last active October 15, 2024 19:08
[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;