Advanced Marketplace Platform Creation

FULL-STACK DEVELOPMENT PROJECT – MARKETPLACE PLATFORM We are building a next-generation online marketplace platform. This is a full platform build. We are looking for an experienced full-stack developer or development team to deliver a scalable, production-ready system… (Budget: $1500 – $3000 NZD, Jobs: AngularJS, Full Stack Development, JavaScript, MongoDB, Next.js, Node.js, PHP, PostgreSQL, Stripe)

Read more here:: https://www.freelancer.com/projects/full-stack-development/Advanced-Marketplace-Platform-Creation.html

      

Pay-Per-View Movie Streaming Platform

I need a full-stack build of a pay-per-view movie site that supports both live premiers and an on-demand catalog. Visitors should be able to: • Unlock a single title or live event by paying at checkout… (Budget: $250 – $750 USD, Jobs: Full Stack Development, HTML, JavaScript, Payment Processing, PHP, Video Streaming, Web Development, Website Design)

Read more here:: https://www.freelancer.com/projects/full-stack-development/Pay-Per-View-Movie-Streaming.html

      

Customer Data Spreadsheet Entry

I will share a set of spreadsheets that contain raw customer information—names, contact details, and related fields. Your task is to enter every record precisely where indicated, double-checking for typos, missing fields, or obvious inconsistencies as you go… (Budget: ₹750 – ₹1250 INR, Jobs: CRM, Data Analysis, Data Cleansing, Data Entry, Data Management, Data Processing, Excel, PHP)

Read more here:: https://www.freelancer.com/projects/crm/Customer-Data-Spreadsheet-Entry-40411166.html

      

Comprehensive Towing Service Management App

I’m seeking an experienced developer to create a robust towing service management app. The app’s primary function is to manage all aspects of the tow service business. Key features include: – Driver Dispatching: Efficiently assign drivers to jobs… (Budget: $1500 – $3000 USD, Jobs: Android, App Development, Backend Development, Frontend Development, iPhone, Mobile App Development, PHP, UI / User Interface)

Read more here:: https://www.freelancer.com/projects/app-development/Comprehensive-Towing-Service-Management.html

      

Website Upgrade: Add New Features

I’m ready to take my current website beyond its basic framework by integrating fresh, business-driven features. The core objective is crystal clear: add new functionality that delivers tangible value to our visitors and, in turn, to the business… (Budget: $10 – $30 AUD, Jobs: HTML, JavaScript, PHP, User Experience Research, Web Application, Web Design, Web Development, Website Design, Website Management, Website Optimization)

Read more here:: https://www.freelancer.com/projects/web-development/Website-Upgrade-Add-New-Features.html

      

Kick View Bot With Proxies

I need a small, dependable bot that can sit on my server and quietly inflate live-viewer numbers on Kick. Its one and only job is to open and maintain concurrent views of a chosen stream; no chatting, no likes—just sustained, countable presence… (Budget: $30 – $250 USD, Jobs: API Development, Automation, C# Programming, Node.js, PHP, Python, Software Architecture, Web Development)

Read more here:: https://www.freelancer.com/projects/nodejs/Kick-View-Bot-With-Proxies.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.