UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.6 kB
/** * **symfony** - The Symfony CLI tool * * @domain `symfony.com` * @programs `symfony` * @version `5.12.0` (50 versions available) * @versions From newest version to oldest. * * @install `launchpad install symfony` * @aliases `symfony` * @dependencies `php.net` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.symfony * // Or access via domain * const samePkg = pantry.symfonycom * console.log(pkg === samePkg) // true * console.log(pkg.name) // "symfony.com" * console.log(pkg.description) // "The Symfony CLI tool" * console.log(pkg.programs) // ["symfony"] * console.log(pkg.versions[0]) // "5.12.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/symfony-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const symfonyPackage: { /** * The display name of this package. */ name: 'symfony.com'; /** * The canonical domain name for this package. */ domain: 'symfony.com'; /** * Brief description of what this package does. */ description: 'The Symfony CLI tool'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/symfony.com/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install symfony'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['symfony']; 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.12.0', '5.11.0', '5.10.9', '5.10.8', '5.10.7', '5.10.6', '5.10.5', '5.10.4', '5.10.3', '5.10.2', '5.10.1', '5.10.0', '5.9.1', '5.9.0', '5.8.19', '5.8.18', '5.8.17', '5.8.16', '5.8.15', '5.8.14', '5.8.13', '5.8.12', '5.8.11', '5.8.10', '5.8.9', '5.8.8', '5.8.7', '5.8.6', '5.8.5', '5.8.4', '5.8.3', '5.8.2', '5.8.1', '5.8.0', '5.7.8', '5.7.7', '5.7.6', '5.7.5', '5.7.4', '5.7.3', '5.7.2', '5.7.1', '5.7.0', '5.6.2', '5.6.1', '5.6.0', '5.5.10', '5.5.9', '5.5.8', '5.5.7']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['symfony'] }; export type SymfonyPackage = typeof symfonyPackage