Let's Encrypt certificates it is a service that provides certificates via the Certbot client software running on your server.
Add the repository
$ sudo add-apt-repository ppa:certbot/certbot
<?php | |
use Illuminate\Contracts\Support\Arrayable; | |
use Illuminate\Contracts\Support\Jsonable; | |
use Illuminate\Contracts\Support\Renderable; | |
use Illuminate\Support\Collection; | |
use Illuminate\Support\HtmlString; | |
class Javascript implements Arrayable, Jsonable, Renderable | |
{ |
@echo off | |
SETLOCAL EnableDelayedExpansion | |
set /p domain="Enter Domain: " | |
set OPENSSL_CONF=../conf/openssl.cnf | |
set tmp_cert_conf=cert_%domain%.conf | |
del %tmp_cert_conf% |
<template> | |
<vue-input-typer placeholder="Type here" class="form-control" @typed="typedInput"></vue-input-typer> | |
</template> | |
<script> | |
import VueInputTyper from '@/components/input-typer.vue'; | |
const CancelToken = axios.CancelToken; | |
const source = CancelToken.source(); | |
// Se necesita instalar: npm install vuejs-paginate --save | |
import VuePaginationContainer from '@/components/vue-pagination-container'; | |
Vue.component('vue-pagination-container', VuePaginationContainer); | |
import VuePagination from '@/components/vue-pagination'; | |
Vue.component('vue-pagination', VuePagination); |
<?php | |
use Carbon\Carbon; | |
use PDO; | |
/** | |
* Class PDORepository | |
*/ | |
abstract class PDORepository | |
{ |
phpunit --filter methodNameTest path/reference/fileName.php |
git log --follow relative_path_filename |