Popularity
4.3
Stable
Activity
0.0
Stable
405
18
27

Code Quality Rank: L4
Programming language: PHP
License: MIT License

Melody alternatives and similar libraries

Based on the "Dependency Management" category.
Alternatively, view Melody alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Melody or a related project?

Add another 'Dependency Management' Library

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

demo

More Information

Read the documentation for more information.