Skip to main content

Posts

Showing posts with the label php

Deploy your Symfony application on AWS Elastic Beanstalk using CloudFormation best php training trivandrum

Deploy your Symfony application on AWS Elastic Beanstalk using CloudFormation The problem I was looking for a way to quickly create a Minimum Viable Stack on AWS with the following properties: Be setup in less than 10min Be able to run a Symfony application Using PostgreSQL on RDS Deployment is easy and fast Non AWS experts can create the MVS But I couldn’t find any out-of-the-box tools so I looked for a solution. Here I describe my journey which ended up with a ready-to-go CloudFormation configuration. Elastic Beanstalk I started working with  Elastic Beanstalk , the PAAS of AWS,  which seemed to be exactly what I needed . Thanks to  this article  on Elastic Beanstalk configuration files and  this one  on how to deploy a Symfony application, I was able to run my application  after some debugging cycles . My problem after that was that I couldn’t reuse my configuration to recreate the whole environment (El...

A DateTimePeriod library for working with temporal intervals php training trivandrum

An implementation of the datetime period type for working with temporal intervals. The library includes the full set of relations on intervals defined by  Allen's Interval Algebra . For further information see the "Usage" and "How it works" paragraphs. Requirements PHP 7.1+ Installation $ composer require pwm/datetime-period Usage Creation: $start = new DateTimeImmutable ( ' 2010-10-10T10:10:10+00:00 ' ); $end = new DateTimeImmutable ( ' 2011-11-11T11:11:11+00:00 ' ); $period = new DateTimePeriod ( $start , $end ); // Start/end instants and their interval $start = $period -> getStart(); // DateTimeImmutable('2010-10-10T10:10:10+00:00') $end = $period -> getEnd(); // DateTimeImmutable('2011-11-11T11:11:11+00:00') $interval = $period -> getInterval(); // DateInterval('P1Y1M1DT1H1M1S') Restrictions: // Throws TimeZoneMismatch exception new DateTimePeriod ( new Da...

PHP Realtime Libraries |Best php Training Triavndrum

PHP Realtime Libraries PushRadar’s official PHP library, wrapping the PushRadar API   – PushRadar is a realtime notifications API service for the web. The service uses a simple publish-subscribe model, allowing you to broadcast “notifications” on “channels” that are subscribed to by one or more clients. Notifications are pushed in realtime to those clients. Real-time log debugger  – Simple and Lightweight real-time log debugger via Websocket with Nodejs, SocketIO and Restful API to feed log (PHP, Python…) This project turnkey is distributed as a middleware to expose RATP realtime data as REST resources – This project turnkey is distributed as a middleware to expose RATP data as REST resources. You can retrieve real time schedules for any given RER (train), Metro, Tramway, Bus or Noctilien stop in real time. A PHP API wrapper for ORTC    – It’s an unofficial client for  ORTC  (Open Real-Time Connectivity, realtime & cl...