for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* Composer plugin for bower/npm assets
*
* @link https://github.com/hiqdev/composer-asset-plugin
* @package composer-asset-plugin
* @license BSD-3-Clause
* @copyright Copyright (c) 2015, HiQDev (http://hiqdev.com/)
*/
namespace hiqdev\composerassetplugin;
/**
* NPM package manager class.
* @author Andrii Vasyliev <[email protected]>
class Npm extends PackageManager
{
* @inheritdoc
protected $name = 'npm';
public $file = 'package.json';
public $phpPackage = 'non existent npmphp';
* Minimal npm config.
protected $config = [
'name' => 'composer-asset-plugin',
'description' => "This file is auto-generated with 'hiqdev/composer-asset-plugin'.",
'readme' => ' ',
'repository' => array('type'=>'git'),
];
}