UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.02 kB
/** * **phpMyAdmin** - pkgx package * * @domain `phpmyadmin.net` * @version `5.2.2` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install phpMyAdmin` * @name `phpMyAdmin` * @dependencies `php.net` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.phpMyAdmin * // Or access via domain * const samePkg = pantry.phpmyadminnet * console.log(pkg === samePkg) // true * console.log(pkg.name) // "phpMyAdmin" * console.log(pkg.versions[0]) // "5.2.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/phpmyadmin-net.md * @see https://ts-pkgx.netlify.app/usage */ export declare const phpMyAdminPackage: { /** * The display name of this package. */ name: 'phpMyAdmin'; /** * The canonical domain name for this package. */ domain: 'phpmyadmin.net'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/phpmyadmin.net/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install phpMyAdmin'; programs: readonly []; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['php.net']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['5.2.2', '5.2.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +phpmyadmin.net -- $SHELL -i'; launchpadInstallCommand: 'launchpad install phpMyAdmin' }; export type PhpMyAdminPackage = typeof phpMyAdminPackage