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.
7 lines
121 B
Bash
7 lines
121 B
Bash
#!/bin/sh
|
|
|
|
PREFIX="@PREFIX@"
|
|
BINDIR="$PREFIX/bin"
|
|
DATADIR="$PREFIX/share"
|
|
|
|
"$BINDIR/php" "$DATADIR/php/composer.phar" $@
|