forked from henck/rtf-html-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (36 loc) · 1.06 KB
/
composer.json
File metadata and controls
37 lines (36 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "rafaelapuka/rtf-html-php",
"description": "Livraria baseada em henck/rtf-html-php para transformar rtf em html",
"type": "library",
"keywords": [ "composer", "json", "generator" ],
"license": "MIT",
"authors": [ { "name": "Claudio Rafael",
"email": "rafaelskillus@msn.com",
"homepage": "https://twitter.com/rafaelapuka",
"role": "Developer" } ],
"repositories": [
{
"type": "package",
"package": {
"name": "example-package-name", //give package name to anything, must be unique
"version": "1.0",
"source": {
"url": "https://github.com/rafaelapuka/rtf-html-php.git", //git url
"type": "git",
"reference": "master" //git branch-name
}
}
}],
"require": {
"php": "^7.4",
"ext-json": "*" },
"require-dev": {
"phpunit/phpunit": "^8.0" },
"autoload": {
"psr-4": { "ComposerJson\\": "./src/" } },
"autoload-dev": {
"psr-4": {
"ComposerJson\\Tests\\": "./tests/"
}
}
}