Skip to content

Commit

Permalink
Initial release
Browse files Browse the repository at this point in the history
  • Loading branch information
pedroborges committed Feb 28, 2017
1 parent cccd5f3 commit 2c1696e
Show file tree
Hide file tree
Showing 10 changed files with 1,839 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
; top-most EditorConfig file
root = true

; Unix-style newlines
[*]
end_of_line = LF

[*.php]
indent_style = space
indent_size = 4
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/vendor
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Change Log
All notable changes to this project will be documented in this file.

## [0.0.1] - 2017-02-28
### Initial release
20 changes: 20 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "pedroborges/meta-tags",
"description": "",
"license": "MIT",
"keywords": ["head", "seo", "meta", "meta tags", "Open Graph", "Facebook", "Twitter Cards"],
"authors": [
{
"name": "Pedro Borges",
"email": "[email protected]"
}
],
"require-dev": {
"phpunit/phpunit": "^5.7.0"
},
"autoload": {
"psr-4": {
"PedroBorges\\MetaTags\\": "src"
}
}
}
Loading

0 comments on commit 2c1696e

Please sign in to comment.