Skip to content

Commit 66edb49

Browse files
authored
Merge pull request #19 from dipcode-software/feat/docs
Feat/docs
2 parents d500b49 + 00ae66c commit 66edb49

File tree

12 files changed

+24
-2
lines changed

12 files changed

+24
-2
lines changed

composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
{
22
"name": "dipcode/php-form",
3-
"description": "PHP class for form handling abstraction.",
3+
"description": "Full featured form engine library.",
44
"license": "MIT",
55
"homepage": "https://github.com/dipcode-software/php-form",
6+
"keywords": [
7+
"forms"
8+
],
69
"authors": [
710
{
811
"name": "Dipcode",

deploy/deploy.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/bin/bash
2+
3+
source deploy/env/bin/activate && \
4+
pip install -r deploy/docs-requirements.txt && \
5+
mkdocs build && \
6+
tar -zcvf phpform.tar.gz -C site . && \
7+
curl -X POST -H "Content-Type: multipart/form-data" -H "Api-Key: ${1}" -F "archive=@phpform.tar.gz" https://alexandriadocs.io/api/v1/projects/upload/ && \
8+
rm phpform.tar.gz
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

docs/index.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Welcome to PHPForm documentation
2+
[![Build Status](https://travis-ci.org/dipcode-software/php-form.svg?branch=master)](https://travis-ci.org/dipcode-software/php-form)
3+
[![Coverage Status](https://coveralls.io/repos/github/dipcode-software/php-form/badge.svg?branch=master)](https://coveralls.io/github/dipcode-software/php-form?branch=master)
4+
[![Latest Stable Version](https://poser.pugx.org/dipcode/php-form/v/stable)](https://packagist.org/packages/dipcode/php-form)
5+
[![License](http://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)](http://www.opensource.org/licenses/MIT)
6+
7+
PHP class for form handling abstraction inspired in the fantastic Django Framework Forms.
8+
9+
## Requirements
10+
PHPForm v1.1.0 requires PHP 7. Using the latest version of PHP is highly recommended.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)