2017 © Pedro Peláez
 

composer-plugin composer-cleanup-plugin

A composer cleanup plugin, to remove tests and documentation to save space

image

barryvdh/composer-cleanup-plugin

A composer cleanup plugin, to remove tests and documentation to save space

  • Monday, May 14, 2018
  • by Barryvdh
  • Repository
  • 6 Watchers
  • 68 Stars
  • 4,064 Installations
  • PHP
  • 3 Dependents
  • 0 Suggesters
  • 10 Forks
  • 6 Open issues
  • 2 Versions
  • 22 % Grown

The README.md

Composer Cleanup Plugin

Remove tests & documentation from the vendor dir. Based on laravel-vendor-cleanup but implemented as a Composer Plugin instead of a Laravel command., (*1)

Usually disk size shouldn't be a problem, but when you have to use FTP to deploy or have very limited disk space, you can use this package to cut down the vendor directory by deleting files that aren't used in production (tests/docs etc)., (*2)

Note: This package is abandoned. Packages should add files they want to exclude to .gitattributes, (*3)

Install

Require this package in your composer.json:, (*4)

  "barryvdh/composer-cleanup-plugin": "0.4.x"

Usage

This plugin will work automatically on any packages installed as dist. Therefore, if you are using it to build a package archive, simply run composer install with the --prefer-dist option., (*5)

What does it do?

For every installed or updated package in the default list, in general:, (*6)

  1. Remove documentation, such as README files, docs folders, etc.
  2. Remove tests, PHPUnit configs, and other build/CI configuration.

Some packages don't obey the general rules, and remove more/less files. Packages that do not have rules added are ignored., (*7)

Adding rules

Please submit a PR to src/CleanupRules.php to add more rules for packages. Make sure you test them first, sometimes tests dirs are classmapped and will error when deleted., (*8)

The Versions

14/05 2018

dev-master

9999999-dev

A composer cleanup plugin, to remove tests and documentation to save space

  Sources   Download

MIT

The Requires

  • composer-plugin-api ^1.0

 

18/06 2015

v0.1.0

0.1.0.0

A composer cleanup plugin, to remove tests and documentation to save space

  Sources   Download

MIT

The Requires

  • composer-plugin-api ^1.0