Custom GPT-Style AI Assistant

I’m building a bilingual (Hindi + English) conversational AI, accessible both as a responsive website and a native Android app. The core is a text-based chat interface that must feel as fluid as ChatGPT while specialising in handling customer-support queries… (Budget: ₹12500 – ₹37500 INR, Jobs: AI Chatbot Development, AI Development, Android, Android App Development, Graphic Design, Mobile App Development, PHP, Web Development)

Read more here:: https://www.freelancer.com/projects/ai-chatbot-development/Custom-GPT-Style-Assistant.html

      

Advanced Google Sheet Automation

I’m ready to transform a plain Google Sheet into a fully-fledged, automated workspace. The file should look clean and intuitive while running behind-the-scenes scripts that remove repetitive chores and speed up everyday tasks… (Budget: $15 – $25 USD, Jobs: Automation, Data Entry, Google Chrome, Google Sheets, PHP)

Read more here:: https://www.freelancer.com/projects/automation/Advanced-Google-Sheet-Automation-40555866.html

      

Website Data Extraction via Postman

I need a Postman-only workflow that pulls user information from a site whose traffic I have confirmed runs on a REST API. The job breaks down into two parts: • Reproduce the calls I already know about, then trace and document any additional endpoints we still need… (Budget: $10 – $30 USD, Jobs: API, API Development, Data Extraction, JavaScript, JSON, PHP, REST API, Software Architecture)

Read more here:: https://www.freelancer.com/projects/api/Website-Data-Extraction-via-Postman.html

      

Wix School Website Development

I need a freelancer to enhance our school website on Wix. There’s an existing outline, but it needs to be fleshed out and polished. The website’s primary purpose is to showcase school events and achievements… (Budget: ₹1500 – ₹12500 INR, Jobs: Graphic Design, HTML, PHP, Web Design, Web Development, Website Design, Website Optimization, Wix)

Read more here:: https://www.freelancer.com/projects/wix/Wix-School-Website-Development.html

      

Claude AI Ecommerce Growth

I want to bring Claude AI into my store’s daily workflow so every decision—from keyword research to product choice—happens faster and with data-backed confidence. The first step is a clean installation… (Budget: $30 – $250 USD, Jobs: Facebook Ads, Google Adwords, HTML, Instagram Marketing, PHP, SEO, Social Media Marketing, TikTok, Website Design, WooCommerce)

Read more here:: https://www.freelancer.com/projects/seo/Claude-Ecommerce-Growth.html

      

Meta Ads Analytics Expert

We are an AI tech startup looking for someone to run meta ads for us.We build AI voice agents and call-centre systems that handle inbound calls, bookings, and customer enquiries, alongside business automations (lead routing, CRM syncing, reporting… (Budget: ₹1500 – ₹12500 INR, Jobs: Advertising, AI Chatbot Development, AI Development, Analytics, Google Analytics, Internet Marketing, PHP, Sales)

Read more here:: https://www.freelancer.com/projects/analytics/Meta-Ads-Analytics-Expert.html

      

Stellar Web Designer for Portfolio & Showreel

Project Title: Expert Website Designer Needed for Personal Portfolio Website & Showreel Project Overview: I am looking for a highly creative and expert website designer to design and build a personal portfolio website… (Budget: ₹600 – ₹1500 INR, Jobs: Figma, Graphic Design, HTML, PHP, Vercel, Web Design, Website Design, Website Development)

Read more here:: https://www.freelancer.com/projects/figma/Stellar-Web-Designer-for-Portfolio.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.