Building of Planning Labs Official Website

Hello, We are planning to redesign and redevelop the official website of Planning Labs, an experiential and digital marketing agency based in Mumbai. The objective is to create a premium, modern, visually… (Budget: ₹1500 – ₹12500 INR, Jobs: Content Management System (CMS), Digital Marketing, HTML, PHP, SEO, Web Design, Web Development, Website Design, Website Optimization)

Read more here:: https://www.freelancer.com/projects/web-design/Building-Planning-Labs-Official-Website.html

      

Minimalist Digital History Website Build

I’m commissioning a professional, mobile-first website to showcase an ongoing digital history project and a compact online exhibition. The visual direction is firmly minimalistic and clean—plenty of white… (Budget: €250 – €750 EUR, Jobs: CMS, CSS, HTML, JavaScript, PHP, Web Design, Web Development, Webflow, Website Design, WordPress)

Read more here:: https://www.freelancer.com/projects/web-design/Minimalist-Digital-History-Website-Build.html

      

Website Bug Fix & Optimization

Several pages on my site are throwing inconsistent errors, and a few interactive elements have stopped responding as intended. I am experiencing a mix of visual glitches, slow load times, and the occasional 500-level server response… (Budget: $30 – $250 USD, Jobs: Backend Development, CSS, Frontend Development, HTML, JavaScript, MySQL, PHP, Web Development)

Read more here:: https://www.freelancer.com/projects/web-development/Website-Bug-Fix-Optimization.html

      

Get Grade-A GTmetrix Shopify

My Shopify homepage must reach a solid Grade A on both mobile and desktop when tested on GTmetrix. Right now the site lags behind because of slow loading times and some unrefined JavaScript and Liquid snippets… (Budget: €8 – €30 EUR, Jobs: CSS, Frontend Development, GTmetrix, HTML, JavaScript, PHP, SEO, Shopify, Web Development, Website Optimization)

Read more here:: https://www.freelancer.com/projects/shopify-site/Get-Grade-GTmetrix-Shopify.html

      

All in One AI Commerce

I want an integrated, cloud-based system that takes a product from manufacturing plans all the way to the moment it reaches the customer, then loops the resulting data straight back into smarter decisions… (Budget: ₹12500 – ₹37500 INR, Jobs: AI Chatbot, AI Development, API, Cloud Computing, eCommerce, HTML, MySQL, PHP)

Read more here:: https://www.freelancer.com/projects/api/All-One-Commerce.html

      

*Technical SEO Expert (Laravel Experience Required)

**Technical SEO Expert (Laravel Experience Required)** We are looking for a **Technical SEO Expert** who also has **strong Laravel development experience**. **Requirements:** * Proven expertise in **Technical… (Budget: $15 – $25 USD, Jobs: Backend Development, Laravel, MySQL, PHP, SEO, SEO Auditing, Web Design, Web Development, Website Analytics, Website Optimization)

Read more here:: https://www.freelancer.com/projects/laravel/Technical-SEO-Expert-Laravel-Experience.html

      

Instalando Laravel Framework

laravelLaravel utiliza o composer para gerenciar suas dependências. Então, antes de usar o Laravel, você precisa ter o composer instalado em sua máquina. Caso não tenha veja como fazer a instalação neste post anterior: Instalando Composer

 

1. Baixe o instalador do laravel via composer

php composer.phar global require "laravel/installer=~1.1"

 

2. Criar projeto

php composer.phar create-project laravel/laravel phpConference 4.2 --prefer-dist

 

3. Configurar ambiente laravel

Nesses arquivos você poderá configurar a URL para os diferentes ambientes como também o local, timezone, chave para criptografia, entre outros.

Produção:

phpConference/app/config/app.php

Local:

phpConference/app/config/local/app.php

 

4. Permitir escrita ao servidor web para o seguinte diretório:

phpConference/app/storage

 

Requisitos:

PHP >= 5.4
Extensão PHP MCrypt
Modulo apache mod_rewrite

Referência: http://laravel.com/docs/4.2

Instalando Composer

composer
Composer: ferramenta para gerenciamento de dependências em PHP. Ele permite que você declare as bibliotecas dependentes que seu projeto precisa e vai instalá-los.

Pré-Requisito: versão minima do PHP 5.3.2.

Para instalar a última versão do composer digite a seguinte linha no terminal do Linux/Unix/OSX.

Instalação via cURL:

curl -sS https://getcomposer.org/installer | php

Ou instalação via PHP:

php -r "readfile('https://getcomposer.org/installer');" | php

 

Referencia: https://getcomposer.org/doc/00-intro.md

Instalando PHPUnit no Windows com XAMPP

Partindo do principio de que o XAMPP já está instalado e configurado abra o painel de controle do XAMPP (XAMPP Control Panel) e clique no botão Shell.

Painel de controle do XAMPP
Painel de controle do XAMPP

 

 

 

 

 

 

 

 

 

Quando abrir o terminal/prompt de comando digite os seguintes comandos:

pear config-set auto_discover 1
pear install pear.phpunit.de/PHPUnit
pear install phpunit/PHPUnit_SkeletonGenerator

Pronto ao final destes três comandos deverá retornar a mensagem: install ok

Para verificar se o PHPUnit está executando e qual a versão digite o comando abaixo:

phpunit --version

 

Agora você já pode começar a escrever seus testes.