Skip to content

feat: full prototype with dompdf integration #33

feat: full prototype with dompdf integration

feat: full prototype with dompdf integration #33

Workflow file for this run

name: Tests
on:
pull_request: ~
push: ~
jobs:
split:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/github-script@v7
id: packages
with:
script: |
const fs = require('fs');
const composer = JSON.parse(
fs.readFileSync('./composer.json')
);
const packages = Object.keys(composer.autoload['psr-4']).map(
(namespace) => {
const path = composer.autoload['psr-4'][namespace];
const name = JSON.parse(fs.readFileSync(path + 'composer.json')).name;
return {
name: name,
path: './' + path,
};
}
);
packages.push({name: "knplabs/snappy", path: './'})
console.log(packages);
return packages;