Responsive Multi-Step Lead Form

We are looking for an experienced web developer to create a modern, responsive web form for collecting customer information and generating a professional quotation/report. Project Overview The project… (Budget: $30 – $250 USD, Jobs: HTML, JavaScript, Laravel, Node.js, PHP, Vue.js, Web Development, Website Design)

Read more here:: https://www.freelancer.com/projects/web-development/Responsive-Multi-Step-Lead-Form.html

      

Web Application Development Needed

I’m building a brand-new web application and need an end-to-end development partner to bring it from rough concept to a secure, production-ready release. You’ll work with me to refine requirements, choose… (Budget: ₹400 – ₹750 INR, Jobs: API Development, Backend Development, Frontend Development, Graphic Design, HTML, PHP, Web Application, Website Design)

Read more here:: https://www.freelancer.com/projects/api-developmet/Web-Application-Development-Needed-40485688.html

      

Confluence Club Portal Refinement

Our grassroots football club already has a Confluence space packed with governance documents, policies, procedures, role guides, forms, and a health & safety management system. The content is there, yet the overall experience still feels unfinished… (Budget: £250 – £750 GBP, Jobs: Audit, Content Strategy, Documentation, Graphic Design, HTML, PHP, Visual Design, Website Design)

Read more here:: https://www.freelancer.com/projects/visual-design/Confluence-Club-Portal-Refinement.html

      

Tailored eSIM eCommerce Website Development

I want to create an ecommerce web site for selling travel eSIMs online using API from https://esimaccess.com/ and integrating payment gateway from https://stripe.com that can compete against the likes… (Budget: ₹600 – ₹1500 INR, Jobs: API Development, eCommerce, Payment Gateway Integration, Payment Processing, PHP, SEO, Web Development, Website Design, Website Optimization)

Read more here:: https://www.freelancer.com/projects/api-developmet/Tailored-eSIM-eCommerce-Website.html

      

Student Counseling Website Development

The admission, seat matrix assignment, and preference-list layout for competitive engineering colleges (such as JoSAA/CSAB institutes) presents an overwhelming operational challenge for prospective students… (Budget: ₹5000 – ₹7000 INR, Jobs: API Development, Artificial Intelligence, Conversational AI, Java, Matlab and Mathematica, MySQL, PHP, Statistical Modeling, Web Development)

Read more here:: https://www.freelancer.com/projects/web-development/Student-Counseling-Website-Development.html

      

Convert HTML Website to WordPress Using Elementor

We are looking for an experienced WordPress developer to convert an existing HTML website into WordPress using Elementor. Scope of Work: – Convert all existing HTML pages into WordPress pages using Elementor… (Budget: $30 – $250 USD, Jobs: CSS, Elementor, HTML, Page Speed Optimization, PHP, SEO, Web Design, Website Design, Website Development, WordPress)

Read more here:: https://www.freelancer.com/projects/elementor/Convert-HTML-Website-WordPress-Using.html

      

Prototype Real Estate SaaS CRM

Build MVP Real Estate CRM SaaS (Custom Development) I am looking for an experienced developer to build an MVP version of a Real Estate CRM that I plan to offer as a SaaS product. This is not for my own business… (Budget: ₹12500 – ₹37500 INR, Jobs: CRM, HTML, Next.js, Node.js, PHP, Software Architecture, Web Development, Website Design)

Read more here:: https://www.freelancer.com/projects/web-development/Prototype-Real-Estate-SaaS-CRM.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.