Popularity
4.3
Stable
Activity
0.0
Stable
405
18
27
Code Quality Rank:
L4
Programming language: PHP
License: MIT License
Tags:
Dependency Management
Melody alternatives and similar libraries
Based on the "Dependency Management" category.
Alternatively, view Melody alternatives based on common mentions on social networks and blogs.
-
Composer Installers
A Multi-Framework Composer Library Installer -
composer-unused
Show unused composer dependencies by scanning your code -
PHP Dependency analyzer
Library for check dependency between modules inside projects
Clean code begins in your IDE with SonarLint
Up your coding game and discover issues early. SonarLint is a free plugin that helps you find & fix bugs and security issues from the moment you start writing code. Install from your favorite IDE marketplace today.
Promo
www.sonarlint.org
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Melody or a related project?
README
Melody - One-file composer scripts
Create a file named test.php
:
<?php
<<<CONFIG
packages:
- "symfony/finder: ~2.8"
CONFIG;
$finder = Symfony\Component\Finder\Finder::create()
->in(__DIR__)
->files()
->name('*.php')
;
foreach ($finder as $file) {
echo $file, "\n";
}
And simply run it:
$ melody run test.php
More Information
Read the documentation for more information.