https://github.com/linkorb/metaculous
Metaculous: Analyze a code-repository and output a structured JSON report of all the findings.
https://github.com/linkorb/metaculous
Last synced: 11 months ago
JSON representation
Metaculous: Analyze a code-repository and output a structured JSON report of all the findings.
- Host: GitHub
- URL: https://github.com/linkorb/metaculous
- Owner: linkorb
- Created: 2018-12-03T08:58:14.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-02-06T13:40:40.000Z (over 3 years ago)
- Last Synced: 2025-07-13T00:44:03.530Z (12 months ago)
- Language: PHP
- Size: 47.9 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Metaculous
Metaculous contains a set of Analyzers that scan your repository for common files (like package.json, .editorconfig, etc) and extract structured data from them into a .json file for further processing.
## Installation
composer require linkorb/metaculous --dev
## Usage
vendor/bin/metaculous --help
## Run analyzers:
bin/metaculous analyze -c metaculous.yaml -o metaculous.json
## project.yml example:
Here's a simple example `metaculous.yaml` file:
```yml
variables:
project:
title: Hello world
```
## Development / debugging:
The `examples/` directory contains a collection of common files.
While developing analyzers, you can run `./bin/metaculous analyze -c examples/full-project/metaculous.yaml` to run metaculous in the context of the `examples/full-project/` directory.