Skip to content

Commit

Permalink
Merge pull request #2 from phillipsdata/update-namespace
Browse files Browse the repository at this point in the history
Changed namespace from `minphp\Form` to `Minphp\Form`
  • Loading branch information
clphillips committed Dec 11, 2015
2 parents 911e49f + d840e3e commit 58cedb4
Show file tree
Hide file tree
Showing 4 changed files with 88 additions and 84 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# minphp/Form
# Minphp/Form

[![Build Status](https://travis-ci.org/phillipsdata/minphp-form.svg?branch=master)](https://travis-ci.org/phillipsdata/minphp-form) [![Coverage Status](https://coveralls.io/repos/phillipsdata/minphp-form/badge.svg)](https://coveralls.io/r/phillipsdata/minphp-form)

Form Builder Library for HTML forms.
Form builder library for HTML forms.

## Installation

Install via composer:

```sh
composer require minphp/form:dev-master
composer require minphp/form
```

## Basic Usage
Expand Down
7 changes: 5 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,17 @@
],
"require": {
"php": ">=5.3.0",
"minphp/html": "dev-master"
"minphp/html": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"squizlabs/php_codesniffer": "~2.2",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-4": {"minphp\\Form\\": "src"}
"psr-4": {"Minphp\\Form\\": "src"}
},
"autoload-dev": {
"psr-4": {"Minphp\\Form\\Tests\\": "tests"}
}
}
Loading

0 comments on commit 58cedb4

Please sign in to comment.