LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

cradle-install

Install Cradle packages and dependencies

TLDR

Install all packages from configuration
$ cradle install
copy
Install specific package
$ cradle install [package_name]
copy
Force install (overwrite existing)
$ cradle install -f
copy
Install skipping SQL setup
$ cradle install --skip-sql
copy
Install skipping versioning
$ cradle install --skip-versioning
copy
Install with database credentials
$ cradle install -h [127.0.0.1] -u [root] -p [password]
copy

SYNOPSIS

cradle install [options] [packages...]

DESCRIPTION

cradle install installs packages and dependencies for the Cradle PHP framework. It manages package installation within the Cradle ecosystem, handling framework-specific modules and extensions.When run without arguments, it installs all dependencies listed in the project's package configuration. When given a specific package name, it installs that package and updates the dependency manifest.

PARAMETERS

-f, --force

Force installation, overwriting existing files.
--skip-sql
Skip SQL database setup during installation.
--skip-versioning
Skip version checks during installation.
-h HOST
Database host address.
-u USER
Database username.
-p PASSWORD
Database password.

SEE ALSO

cradle(1), composer(1)

Copied to clipboard
Kai