Skip to content

Commit

Permalink
Prepare 0.5.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mitelg committed Nov 8, 2021
1 parent 8a72218 commit d2d5618
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 23 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1 +1,2 @@
/vendor/
.idea
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -12,7 +12,7 @@
```json
{
"require": {
"bcremer/sculpin-commonmark-bundle": "~0.4"
"bcremer/sculpin-commonmark-bundle": "~0.5"
}
}
```
Expand Down Expand Up @@ -62,9 +62,9 @@ To add the [CommonMark Table Extension](https://github.com/webuni/commonmark-tab
```yml
# app/config/sculpin_services.yml
services:
webuni.commonmark.tablextension:
class: Webuni\CommonMark\TableExtension\TableExtension
tags:
league.commonmark.tablextension:
class: League\CommonMark\Extension\Table\TableExtension
tags:
- { name: sculpin_commonmark.extension }
```

Expand Down
46 changes: 27 additions & 19 deletions composer.json
@@ -1,22 +1,30 @@
{
"name": "bcremer/sculpin-commonmark-bundle",
"type": "library",
"keywords": ["sculpin", "bundle", "markdown", "commonmark"],
"description": "Sculpin league/commonmark bundle",
"license": "MIT",
"authors": [
{
"name": "Benjamin Cremer",
"email": "bc@benjamin-cremer.de"
"name": "bcremer/sculpin-commonmark-bundle",
"type": "library",
"keywords": [
"sculpin",
"bundle",
"markdown",
"commonmark"
],
"description": "Sculpin league/commonmark bundle",
"license": "MIT",
"authors": [
{
"name": "Benjamin Cremer",
"email": "bc@benjamin-cremer.de"
}
],
"require": {
"php": ">=7.3",
"league/commonmark": "^1.0"
},
"autoload": {
"psr-4": {
"Bcremer\\Sculpin\\Bundle\\CommonMarkBundle\\": ""
}
},
"config": {
"sort-packages": true
}
],
"require": {
"php": ">=7.3",
"league/commonmark": "^1.0"
},
"autoload": {
"psr-4": {
"Bcremer\\Sculpin\\Bundle\\CommonMarkBundle\\": ""
}
}
}

0 comments on commit d2d5618

Please sign in to comment.