Composer is a tool for dependency management in PHP. It allows you to declare the dependent libraries your project needs and it will install them in your project for you. Think npm install but then for PHP { “require”: { “monolog/monolog”: “1.2.*” } } $ composer install Plays nice with packages that support PSR-0 autoloading. …
Tag Archives: cli
Build your own custom jQuery
Firefox Command Line
The command line gives you quick keyboard control over your tools and access to features that don’t have any other user interface. With the GCLI, included in Firefox 16 (now in beta), you can start the built-in inspector … inspect "#home-news h3" … or can even grab a screenshot of certain element … screenshot heading.png …
Cordova client tool
The command line tool to build, deploy and manage Cordova-based applications. Once installed — via npm — you get to do stuff like this: cordova create ~/KewlApp cd ~/KewlApp cordova platform add ios cordova platform add android cordova plugin add http://example.org/Kewlio-1.2.3.tar.gz cordova build Great to see how the Cordova Platform (formerly known as PhoneGap — …
Bower: The browser package manager
PHP CLI, The Other SAPI
Most developers use PHP in a web context and run their code via Apache. The command line interface (CLI) is another approach to run PHP without the overhead of your webserver. This talk not only illustrates the usage of the PHP binary, but also some use cases for which the CLI is the better tool. …