phpSpec top-level property

FigSpec phpSpec
final

Implementation

final FigSpec phpSpec = FigSpec(
  name: 'php',
  description: 'Run the PHP interpreter',
  subcommands: [
    FigSubcommand(
      name: ['artisan'],
      loadSpec: 'php/artisan',
    ),
    FigSubcommand(
      name: ['please'],
      loadSpec: 'php/please',
    ),
    FigSubcommand(
      name: ['bin/console'],
      loadSpec: 'php/bin-console',
    ),
  ],
  args: [
    FigArg(
      template: 'filepaths',
    ),
  ],
);