PHP REST API Development for Conference Database -- 2

I am looking for a developer to help build a REST API using PHP that interacts with a MySQL database containing information about an academic conference (presentations, authors, and presentation types)… (Budget: ₹1500 – ₹12500 INR, Jobs: API Development, Backend Development, Database Management, HTTP, JavaScript, JSON, MySQL, PHP, REST API, Software Architecture)

Read more here:: https://www.freelancer.com/projects/php/PHP-REST-API-Development-for.html

      

AI-Powered Real Estate Platform Development

I’m looking to create an AI-enabled real estate intelligence platform. The platform should leverage AI to perform property recommendations, market analysis, and price predictions. Key Requirements: – AI algorithms for property recommendations, price predictions, and market analysis… (Budget: ₹37500 – ₹75000 INR, Jobs: AI Development, Data Analysis, Graphic Design, HTML, Machine Learning (ML), PHP, User Experience Research, Website Design)

Read more here:: https://www.freelancer.com/projects/ai-development/Powered-Real-Estate-Platform-Development.html

      

Rapid E-Commerce Site Build

I need a full website development service focused on a complete e-commerce site and I’m looking to launch as soon as possible. Here’s what I expect: • A modern, responsive storefront that works smoothly on desktop and mobile… (Budget: $250 – $750 USD, Jobs: Backend Development, eCommerce, Frontend Development, HTML, Payment Gateway Integration, PHP, Web Development, Website Design)

Read more here:: https://www.freelancer.com/projects/web-development/Rapid-Commerce-Site-Build.html

      

Next.js Demo Site, Admin & Payments

I need a small-scale, proof-of-concept website built in Next.js that I can share via a public link (please do not deploy on Vercel). Fast page speed is essential: Lighthouse scores in the green range will be part of the acceptance check… (Budget: ₹12500 – ₹37500 INR, Jobs: Frontend Development, HTML, JavaScript, Next.js, Payment Gateway Integration, PHP, SEO, Website Design)

Read more here:: https://www.freelancer.com/projects/nextjs/Next-Demo-Site-Admin-Payments.html

      

Corporate Website Design for Finance Company

We are an IT and communications company based in Sydney. We are looking to launch a financing company that provides finance for equipment. I need a designer / developer who is good with Hubspot. We will then drop the pages into our internal system once received… (Budget: $250 – $750 AUD, Jobs: Content Management System (CMS), Corporate Identity, Graphic Design, HTML, Hubspot, PHP, SEO, Web Design, Website Design, Website Development)

Read more here:: https://www.freelancer.com/projects/web-design/Corporate-Website-Design-for-Finance.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