/** * **phpMyAdmin** - pkgx package * * @domain `phpmyadmin.net` * @version `5.2.3` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install phpmyadmin.net` * @dependencies `php.net` * @buildDependencies `php.net` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.phpmyadminnet * console.log(pkg.name) // "phpMyAdmin" * console.log(pkg.versions[0]) // "5.2.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/phpmyadmin-net.md * @see https://ts-pkgx.netlify.app/usage */ export declare const phpmyadminnetPackage: { /** * 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: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install phpmyadmin.net'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +phpmyadmin.net -- $SHELL -i'; launchpadInstallCommand: 'launchpad install phpmyadmin.net'; programs: readonly []; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['php.net']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['php.net']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['5.2.3', '5.2.2', '5.2.1']; aliases: readonly [] }; export type PhpmyadminnetPackage = typeof phpmyadminnetPackage