Electronics Company Website & SEO

I need an experienced developer who can build a clean, professional informational website for my electronics company and then optimise it for search. The site must present a clear About Us story, showcase our Products/Services, and provide easy-to-find Contact Information… (Budget: ₹12500 – ₹37500 INR, Jobs: Content Management System (CMS), Internet Marketing, Link Building, PHP, SEO, Web Development, Website Design, WordPress)

Read more here:: https://www.freelancer.com/projects/web-development/Electronics-Company-Website-SEO.html

      

WordPress Corporate Website Development (English / Arabic)

# WordPress Corporate Website Development (English / Arabic) ## Project Overview We are looking for an experienced WordPress freelancer or agency to design and develop a professional, modern, and mobile-friendly corporate website for **AITC**, an FMCG Distribution Company… (Budget: $250 – $750 USD, Jobs: Corporate Identity, Graphic Design, HTML, Mobile App Development, PHP, SEO, Web Development, Website Design, Website Management, WordPress)

Read more here:: https://www.freelancer.com/projects/web-development/WordPress-Corporate-Website-Development-40512908.html

      

Simple Service E-Commerce Website

I need a clean, fast website that lets visitors book and pay for my startup’s professional services in just a few clicks. The site’s core is e-commerce focused—no physical goods, only service sales—so… (Budget: ₹1500 – ₹12500 INR, Jobs: eCommerce, HTML, Payment Gateway Integration, PHP, SEO, Web Development, Website Design, WooCommerce)

Read more here:: https://www.freelancer.com/projects/woocommerce/Simple-Service-Commerce-Website.html

      

Creative Portfolio Website Development

I’m looking for an experienced web developer to create a creative portfolio website. The site should include the following sections: – About Me – Projects – Contact I’m looking for a design that is artistic and innovative… (Budget: ₹1500 – ₹12500 INR, Jobs: Creative Design, Graphic Design, HTML, JavaScript, PHP, Web Design, Web Development, Website Design)

Read more here:: https://www.freelancer.com/projects/web-design/Creative-Portfolio-Website-Development-40511062.html

      

Custom Home Loan CRM Build

I need a lightweight, web-based CRM tailored to my home-loan business so that every enquiry is captured, nurtured, and converted without anything slipping through the cracks. The core modules must let… (Budget: ₹12500 – ₹37500 INR, Jobs: API Integration, CRM, Graphic Design, HTML, PHP, User Interface / IA, Web Development, Website Design)

Read more here:: https://www.freelancer.com/projects/web-development/Custom-Home-Loan-CRM-Build.html

      

Operations Platform Enhancement and Integration

We have built our own operations platform for a cleaning company, including CRM, sales pipeline, booking management, partner management, dispatching, quality control, reporting, and customer automation… (Budget: $10 – $30 USD, Jobs: Analytics, Business Intelligence, Data Analysis, Data Management, Data Visualization, MySQL, PHP, SaaS, Software Architecture, Website Design)

Read more here:: https://www.freelancer.com/projects/business-intelligence/Operations-Platform-Enhancement.html

      

Laundry Delivery Platform Development

I need a full-stack partner to build a hyper-local dry-cleaning and laundry delivery platform from the ground up. The core flow is straightforward: customers must be able to schedule a pickup online, watch… (Budget: ₹37500 – ₹75000 INR, Jobs: API Development, Database Management, Full Stack Development, JavaScript, MySQL, PHP, Software Architecture, Web Development)

Read more here:: https://www.freelancer.com/projects/full-stack-development/Laundry-Delivery-Platform-Development.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.