JoBinsforJoBins Engineeringjobins.hashnode.net·Nov 30, 2021Build and publish your own Laravel packageWhat is Package ? Package is a stand-alone source code which we can import into our different projects using a package management tool like a composer (in the case of PHP). Why is it needed? Many developers reuse the same source code by copy-pasting...Abiral Khanal and 1 other are discussing this2 people are discussing thisDiscuss·42 likes·268 readsLaravel
Kaan Enes KAPICIkaaneneskpc.hashnode.net·May 2, 2021Procedural(Imperative) UI vs Declarative UI and Approach on the Android SideHello everyone, Today we’re looking for the difference between imperative uı and declarative uı then learn information about the jetpack compose. In the dynamic realm of Android app development, it is not uncommon for new libraries, SDKs, and arch...Discuss·11 likes·192 readsAndroid
Winner Emetowinneremeto.hashnode.net·Jun 10, 2020HOW TO SET UP UBUNTU FOR PHP/LARAVEL PROJECTComing from a python background where one install solves a lot of your problems when it comes to setting up your environment for development or production. Am a python developer but recently a client approached me for a project, and after evaluating ...Discuss·7 likes·207 readsPHP
Md. Minhazul Haquemdminhazulhaque.hashnode.net·Mar 31, 2023Bypass Proxy for Composer/NPM/AptWhile working in a restricted on-prem network, popular package managers like Composer or NPM may not properly work. Thanks to the proxy filtering technologies at the internet gateway end. These package managers often download files over an unencrypte...Discussproxy
Vlad Osmianskiosmianski.hashnode.net·Mar 16, 2023Creating Composer package for Laravel from scratchLet me guess. You are reading this piece because you have something reusable in your Laravel project, and you want to create a Composer package and actually reuse it in other projects. If so, hang on, you are in the right place. Example project In a ...Discuss·42 readscomposer
Saravana Sai saravanasai.hashnode.net·Mar 15, 2023Essential Composer v2.4 CommandsIntroduction A composer is a tool for dependency management in PHP. It allows you to declare the libraries your project depends on and it will manage (install/update) them for you. The composer is not a package manager in the same sense as Yum or Apt...Discuss·52 readsDevops
Bruce Wellsphpfui.hashnode.net·Dec 3, 2022Packagist Best PracticesWhen creating a package for other PHP developers to use, it helps to follow some basic rules to help the developers you are trying to get to use your package. While there are other guides on how to publish a package on packagist.org, I thought I woul...Discuss·52 readspackagist
Bruce Wellsphpfui.hashnode.net·Dec 2, 2022Benchmarking PHP AutoloadersAs I have posted previously, the PHP autoloader is one of the great things about PHP. It truly simplifies PHP development by not having to deal with include files or imports that plague most other languages. Autoloading is not FREE! Like everything e...Discuss·101 readsautoloader
Pradip Limbupradiplimbu.hashnode.net·Nov 13, 2022Create and publish your first composer packageBackground There was a time when you wanted to install a PHP library on your project. You had to manually download the zip file, extract it and copy the relevant files to your project. You had to manage any updates that occurred, which was inconvenie...Discuss·1 like·40 readscomposer
Vlad Osmianskiosmianski.hashnode.net·Oct 31, 2022Autoupdating Project DependenciesIntroduction Most probably you've heard about Dependabot. It's a GitHub service that checks if your project dependencies have new releases, and updates your project, automatically. I believe it's a great help to many, many developers. However, it re...Discuss·132 readsGitHub
Ruben Roblesd8vjork.hashnode.net·Sep 4, 2022My day by day as an open source enthusiastFrom an idea comes its development, that's why, after several package ideas, I came to the conclusion of creating this organisation on Github, but also creating its base template for what I do most: Create PHP packages extending Laravel. Now here's t...Discuss·29 readsLaravel
Simon Ugorjioctagon.hashnode.net·Jul 29, 2022How To Validate Your Forms Server-Side With Octavalidate-PHPForm validation is very important to prevent unwanted/malformed data from being stored in your database. One wrong input from a user can affect the whole records in a database, so it is necessary to validate all form inputs before they are stored in ...Discuss·52 readsPHP
Zia UddinforTritech developer blogsnzian-1654406882243.hashnode.net·Jun 7, 2022Add a package from GitHub repository in composer.json of your php project.About Now a days we usually create php project by composer and add project depended package or module by composer. Today I am working a project using popular framework laravel. I need install a package through composer that conflict with my existing ...Discuss·38 readsPHP