Skip to content

Commit

Permalink
Atualizaçãodo dos parametros para composer
Browse files Browse the repository at this point in the history
  • Loading branch information
alanfm committed Jul 5, 2017
1 parent 4b0c63c commit 4b52f05
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ echo $p->build();

```

Resultado:
Resultado:

```html
<p>Texto do meu parágrafo!</p>
Expand All @@ -115,7 +115,7 @@ echo $div->build();

```

Resultado:
Resultado:

```html
<span class="text-bold clear">Conteúdo do span</span>
Expand All @@ -129,7 +129,7 @@ $div->attr('class', ['text-bold', 'clear']);
echo $div->build();
```

Resultado:
Resultado:

```html
<span class="text-bold clear">Conteúdo do span</span>
Expand All @@ -151,7 +151,7 @@ echo $div->build();

```

Resultado:
Resultado:

```html
<div id="main" class="content">Texto que está dentro da minha div.</div>
Expand Down
6 changes: 6 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
{
"name": "alanfm/html-builder",

"discription": "Interface para criação de tags/elementos HTML com PHP",

"keywords": ["HTML", "HTMLBuilder", "Builder", "PHP"],

"authors": [
Expand All @@ -11,6 +13,10 @@
}
],

"homepage": "https://github.com/alanfm/htmlbuilder",

"license": "MIT",

"require": {
"php": ">=7.0"
},
Expand Down

0 comments on commit 4b52f05

Please sign in to comment.