Skip to content

Commit af5ba3f

Browse files
authored
Merge pull request #21 from Vestaboard/copilot/add-composer-json-file
Add composer.json to root for Packagist registration
2 parents 79d0a82 + 3dabc69 commit af5ba3f

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

composer.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "vestaboard/vbml",
3+
"description": "The Vestaboard Markup Language for PHP",
4+
"type": "library",
5+
"license": "GNU",
6+
"authors": [{"name": "Vestaboard"}],
7+
"require": {
8+
"php": "^8.1",
9+
"mustache/mustache": "^2.14"
10+
},
11+
"require-dev": {
12+
"phpunit/phpunit": "^10.0"
13+
},
14+
"autoload": {
15+
"psr-4": {"Vestaboard\\Vbml\\": "php/src/"}
16+
},
17+
"autoload-dev": {
18+
"psr-4": {"Vestaboard\\Vbml\\Tests\\": "php/tests/"}
19+
},
20+
"minimum-stability": "stable"
21+
}

0 commit comments

Comments
 (0)