Skip to content

Commit

Permalink
prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
roadiz-ci committed Mar 6, 2023
1 parent 6f3879e commit b861244
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# dts-generator
Roadiz sub-package which generates Typescript interface declaration skeleton based on your schema.

[![Unit tests, static analysis and code style](https://github.com/roadiz/dts-generator/actions/workflows/run-test.yml/badge.svg?branch=develop)](https://github.com/roadiz/dts-generator/actions/workflows/run-test.yml)

### Usage

```php
Expand All @@ -17,3 +19,7 @@ $declaration = new DeclarationGenerator($declarationFactory);

echo $declaration->getContents();
```

## Contributing

Report [issues](https://github.com/roadiz/core-bundle-dev-app/issues) and send [Pull Requests](https://github.com/roadiz/core-bundle-dev-app/pulls) in the [main Roadiz repository](https://github.com/roadiz/core-bundle-dev-app)
16 changes: 12 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,31 @@
"description": "Roadiz sub-package which generates Typescript interfaces skeleton based on your schema",
"type": "library",
"require": {
"roadiz/nodetype-contracts": "~1.1.0",
"symfony/http-foundation": "~5.0.7 || ^5.2"
"roadiz/nodetype-contracts": "~1.1.2",
"symfony/http-foundation": "5.4.*"
},
"require-dev": {
"phpstan/phpstan": "^1.5.3",
"squizlabs/php_codesniffer": "^3.6"
"squizlabs/php_codesniffer": "^3.5"
},
"license": "MIT",
"authors": [
{
"name": "Ambroise Maupate",
"email": "[email protected]"
"email": "[email protected]",
"homepage": "https://www.roadiz.io",
"role": "Lead developer"
}
],
"autoload": {
"psr-4": {
"RZ\\Roadiz\\Typescript\\Declaration\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev",
"dev-develop": "2.2.x-dev"
}
}
}

0 comments on commit b861244

Please sign in to comment.