- Add MIT LICENSE (Thorsten Buss) with attribution to the upstream MIT-licensed greyshirtguy/ProPresenter7-Proto definitions. - Add comprehensive README.md: badges, feature matrix, install, seven runnable getting-started examples (read/modify/generate songs, playlists, bundles, global libraries), CLI tool reference, documentation index, project structure, caveats. - Update composer.json with package name (bussnet/propresenter7-php-api), MIT license, keywords, author, homepage, support URLs, dev autoload, and a `composer test` script. - Polish doc/INDEX.md, doc/keywords.md, and doc/CONTRIBUTING.md so they read well for both humans and AI assistants; remove README-duplicate content from INDEX.md and link to the top-level README instead. - Expand .gitignore to cover IDE/OS metadata and agent workspaces. All 370 tests still pass (9,200 assertions). README examples #3 and #5 verified end-to-end (generate -> read back -> assert metadata).
61 lines
1.5 KiB
JSON
61 lines
1.5 KiB
JSON
{
|
|
"name": "bussnet/propresenter7-php-api",
|
|
"description": "PHP library to read, modify, and generate ProPresenter 7 files (.pro songs, .proplaylist, .probundle, themes, and global library files).",
|
|
"type": "library",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"propresenter",
|
|
"propresenter7",
|
|
"presentation",
|
|
"worship",
|
|
"church",
|
|
"protobuf",
|
|
"parser",
|
|
"ccli",
|
|
"pro-file",
|
|
"proplaylist",
|
|
"probundle"
|
|
],
|
|
"homepage": "https://github.com/bussnet/propresenter7-php-api",
|
|
"support": {
|
|
"issues": "https://github.com/bussnet/propresenter7-php-api/issues",
|
|
"source": "https://github.com/bussnet/propresenter7-php-api"
|
|
},
|
|
"authors": [
|
|
{
|
|
"name": "Thorsten Buss",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^8.4",
|
|
"google/protobuf": "^4.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^11.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"ProPresenter\\Parser\\": "src/",
|
|
"Rv\\Data\\": "generated/Rv/Data/",
|
|
"GPBMetadata\\": "generated/GPBMetadata/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"ProPresenter\\Parser\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"bin": [
|
|
"bin/parse-song.php",
|
|
"bin/parse-playlist.php"
|
|
],
|
|
"scripts": {
|
|
"test": "phpunit",
|
|
"test:coverage": "phpunit --coverage-text"
|
|
},
|
|
"config": {
|
|
"sort-packages": true
|
|
}
|
|
}
|