Feature-Rich B2B Platform Build

I’m taking my wholesale business online and need a purpose-built B2B web platform that feels as seamless as the best B2C stores but is tailored to professional buyers and sellers. Core functionality • Product listings: tiered pricing, bulk-order units, rich media, and search/filter tools… (Budget: ₹600 – ₹1500 INR, Jobs: Angular, API Development, HTML, MySQL, Node.js, PHP, Web Development, Website Design)

Read more here:: https://www.freelancer.com/projects/web-development/Feature-Rich-Platform-Build.html

      

Build and Integrate API Connection

I need a developer who can design and implement an API connection from scratch, then integrate it smoothly into my existing system. I am flexible on the architecture—RESTful, GraphQL, or even SOAP—so please suggest the approach you feel best suits modern maintainability and performance… (Budget: €18 – €36 EUR, Jobs: API Development, API Integration, Backend Development, GraphQL, HTML, Java, Node.js, PHP, RESTful, Software Development)

Read more here:: https://www.freelancer.com/projects/api-developmet/Build-Integrate-API-Connection.html

      

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

      

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