Skip to content
Open
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.idea/
vendor/
node_modules/
composer.lock
yarn.lock
.phpunit.cache
.phpunit.result.cache
.phpactor.json
CLAUDE.md
11 changes: 6 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "roelmagdaleno/markdown-to-notion-blocks",
"description": "Convert markdown to Notion blocks.",
"version": "1.2.2",
"version": "1.3.0",
"homepage": "https://github.com/roelmagdaleno/markdown-to-notion-blocks",
"license": "MIT",
"keywords": [
Expand All @@ -23,12 +23,13 @@
],
"require": {
"php": "^8.0",
"league/commonmark": "^2.5",
"incenteev/emoji-pattern": "^1.3"
"league/commonmark": "^2.7",
"incenteev/emoji-pattern": "^v1.4"
},
"require-dev": {
"pestphp/pest": "^1.23",
"phpstan/phpstan": "^1.12"
"pestphp/pest": "^v3.8.2",
"phpstan/phpstan": "^1.12",
"laravel/pint": "^1.22"
},
"scripts": {
"test": "vendor/bin/pest"
Expand Down
Loading