Giter VIP home page Giter VIP logo

php-contact-form's Introduction

ABOUT ME

๐Ÿ‘‹ Hi, Iโ€™m Aman, a multi-disciplined, Award-Winning Creative Front End Developer and UI Engineer
๐Ÿ’ป I have 3 years of experience in Web Design and Development
๐Ÿ–Œ๏ธ I work extensively with Figma, Adobe CC, SASS, Tailwind CSS, JavaScript, TypeScript, React and Next.js
๐Ÿค Iโ€™m looking to collaborate on client and agency-based projects

CSS Winner logo

Frontend Mentor logo

wakatime

MAIN STACK & SERVICES:

NextJS React JavaScript SASS TailwindCSS Babel TypeScript Redux ESLint
Figma Adobe Ai Adobe PSD Adobe XD Git Webpack Vite Vercel

ADDITIONAL STACK & SERVICES:

PHP MySQL CSS3 POSTCSS HTML5 Bootstrap jQuery Babel PowerShell NPM Yarn

CONTACT ME

email website contact linkedin

ADDITIONAL STACKS & SERVICES

Bootstrap logo php logo VS Code logo Git logo wordpress logo woocommerce logo chrome logo canva codepen logo redis logo ssh logo npm logo figma logo digitalocean logo gimp logo

STATS & ACHIEVEMENTS

MOST COMMON STACKS USED

STATS

CURRENT ACHIEVEMENTS

php-contact-form's People

Contributors

asbhogal avatar

Stargazers

 avatar

Watchers

 avatar

php-contact-form's Issues

Setup Airbrake for your PHP application

Installation

Install Airbrake using Composer by running the following command from your project's directory:

composer require airbrake/phpbrake

Configuration

Copy the following configuration snippet into your PHP app. It shows how to initialize Airbrake and register the instance as an error handler:

(You can find your project ID and API key in your project's settings)

$notifier = new Airbrake\Notifier(array(
    'projectId' => <Your project ID>,
    'projectKey' => '<Your project API KEY>'
));

Airbrake\Instance::set($notifier);

$handler = new Airbrake\ErrorHandler($notifier);
$handler->register();

To send a test error, you can call Airbrake directly like in this try/catch example:

try {
    throw new Exception('hello from phpbrake');
} catch(Exception $e) {
    Airbrake\Instance::notify($e);
}

Framework integrations

Full documentation

Check out our official GitHub repo for info on additional features like:

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.