Skip to content

Commit

Permalink
Update composer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
gchtr committed May 9, 2019
1 parent 9d6068e commit 1071080
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.DS_Store
vendor
composer.lock
16 changes: 9 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"name": "timber/teak",
"version": "1.0.0",
"type": "library",
"description": "Generate a Markdown reference documentation for PHP projects (optimized for WordPress)",
"license": "MIT",
Expand All @@ -13,18 +12,21 @@
],
"require": {
"php": ">=7.0.0",
"symfony/filesystem": "^4.0",
"symfony/console": "^4.0",
"phpunit/phpunit": "^6",
"phpdocumentor/reflection": "~2.0",
"phpdocumentor/reflection-docblock": "^3.3",
"phpdocumentor/reflection": " ~2.0"
"phpunit/phpunit": "^6",
"symfony/console": "^4.0",
"symfony/filesystem": "^4.0"
},
"autoload": {
"psr-4": {
"Teak\\": "lib",
"Tests\\": "tests"
}
},
"bin": ["teak"],
"minimum-stability": "alpha"
"bin": [
"teak"
],
"minimum-stability": "alpha",
"prefer-stable": true
}

0 comments on commit 1071080

Please sign in to comment.