Full Betting Website Development Needed

I need an experienced web developer to build a sports-betting platform that mirrors the core flow and polish of Parimatch while remaining uniquely branded for me. The site must launch with three corner-stone… (Budget: ₹12500 – ₹37500 INR, Jobs: API Integration, Graphic Design, Laravel, Node.js, PHP, Vue.js, Web Development, Website Design)

Read more here:: https://www.freelancer.com/projects/web-development/Full-Betting-Website-Development-Needed.html

      

Android Home Services App Build

Hi, I want to build an Android app for home services (like Zomato but for services). Main features: – User login (OTP) – Customer & Worker roles – Customer can book services (electrician, plumber, etc.)… (Budget: ₹600 – ₹1500 INR, Jobs: Android, Android App Development, Backend Development, Flutter, HTML5, Kotlin, Mobile App Development, PHP)

Read more here:: https://www.freelancer.com/projects/android-app-development/Android-Home-Services-App-Build.html

      

GHL CRM & AI Integration

I run an Australian-based sales and marketing company that lives inside GoHighLevel (GHL). I’m ready to push the platform further by weaving in smart automation and data-driven insights, and I need someone who already speaks “GHL” fluently… (Budget: $8 – $15 AUD, Jobs: AI Chatbot Development, API Integration, Automation, JSON, PHP, Predictive Analytics, Salesforce App Development, Salesforce.com)

Read more here:: https://www.freelancer.com/projects/ai-chatbot-development/GHL-CRM-Integration.html

      

Selfie to Word Art Conversion

I have a single selfie and I’d like it transformed into clean, modern word art similar to the reference here: https://snipboard.io/KcrUkq.jpg. Key points you should know: • Style: modern—no vintage flourishes or graffiti effects… (Budget: ₹1500 – ₹12500 INR, Jobs: AI (Artificial Intelligence) HW/SW, Artificial Intelligence, Laravel, Next.js, OpenAI, PHP, React.js)

Read more here:: https://www.freelancer.com/projects/php/Selfie-Word-Art-Conversion.html

      

Expert Developer for Remote Python, C++, SQL Work

Senior Software Developer Needed (Python, C++, SQL) – Remote Access Work We are looking for an experienced Senior Software Developer with over 10 years of hands-on experience in Python, C++, and SQL to support ongoing and upcoming projects… (Budget: $8 – $15 USD, Jobs: C# Programming, C++ Programming, Debugging, PHP, Python, Software Architecture, Software Development, SQL)

Read more here:: https://www.freelancer.com/projects/python/Expert-Developer-for-Remote-Python.html

      

Collaborative Junior/Middle Developer Needed

I looking for Junior / Middle Developer who can collaborate with me for some projects. (Budget: $750 – $1500 USD, Jobs: Development, Graphic Design, HTML, PHP, Project Management, Software Development, Website Design)

Read more here:: https://www.freelancer.com/projects/development/Collaborative-Junior-Middle-Developer.html

      

Build AI Voice Agent + GoHighLevel Lead Qualification System (Vapi + n8n)

I want every new lead in our GoHighLevel (GHL) account to receive a phone call within 60 seconds of submitting a form, hear an AI-driven qualification script, and move through the pipeline with zero human intervention… (Budget: $1500 – $3000 USD, Jobs: AI Chatbot, AI Chatbot Development, API, API Integration, Asterisk PBX, GoHighLevel, n8n, PHP, Software Architecture, Telemarketing)

Read more here:: https://www.freelancer.com/projects/n8n/Build-Voice-Agent-GoHighLevel-Lead.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.