This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# | |
# This script will provides a reverse-search on Packagist to find which libraries uses a given library package | |
# as a dependency. | |
# | |
# Usage: | |
# First, you need to fetch dependencies: ./packagist.py --fetch | |
# After, you can start checking packages: ./packagist.py --package <package-name> | |
# | |
# Author: Vincent Composieux <[email protected]> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Example with basic types | |
--- | |
hash: | |
string: some text | |
number: 12345 | |
array_of_bool: [on, off, true, false, yes, no] | |
ruby symbol: :symbol | |
array: | |
- item one | |
- item two |