1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- {
- "name": "jormin/laravel-ddoc",
- "type": "library",
- "description": "每次开发项目时,总是会被要求提供数据字典,每次手动写文档太累了,所以写了这个扩展,自动读取数据库信息并显示在网页上,支持导出Html和PDF文件。",
- "keywords": [
- "Laravel",
- "Jormin",
- "DDoc"
- ],
- "homepage": "https://github.com/jormin/laravel-ddoc",
- "license": "MIT",
- "authors": [
- {
- "name": "Jormin",
- "email": "jorminxee@gmail.com",
- "homepage": "https://blog.lerzen.com",
- "role": "Developer"
- }
- ],
- "require": {
- "php": ">=5.6",
- "barryvdh/laravel-snappy": "^0.4.0",
- "h4cc/wkhtmltopdf-amd64": "0.12.x",
- "h4cc/wkhtmltopdf-i386": "0.12.x",
- "wemersonjanuario/wkhtmltopdf-windows": "0.12.x"
- },
- "require-dev": {
- "phpunit/phpunit" : "~4.0||~5.0",
- "squizlabs/php_codesniffer": "^2.3"
- },
- "autoload": {
- "psr-4": {
- "Jormin\\DDoc\\": "src"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "Jormin\\DDoc\\": "tests"
- }
- },
- "scripts": {
- "test": "phpunit",
- "check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
- "fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests"
- },
- "extra": {
- "branch-alias": {
- "dev-master": "1.1.x-dev"
- },
- "laravel": {
- "providers": [
- "Jormin\\DDoc\\DDocServiceProvider"
- ]
- }
- },
- "config": {
- "sort-packages": true
- }
- }
|