Skip to content

Commit

Permalink
coverage + cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Alorel committed Oct 14, 2015
1 parent 9cdd01b commit 932dfaa
Show file tree
Hide file tree
Showing 39 changed files with 2,841 additions and 635 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@
/.travis.yml export-ignore
/phpunit.* export-ignore
/coverage export-ignore
/apigen.neon
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
apigen.neon
vendor
composer.lock
local-test.php
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ Latest release API documentation: [https://aloframework.github.io/config/](https
[![Latest Stable Version](https://poser.pugx.org/aloframework/config/v/stable?format=plastic)](https://packagist.org/packages/aloframework/config)
[![Total Downloads](https://poser.pugx.org/aloframework/config/downloads?format=plastic)](https://packagist.org/packages/aloframework/config)

| dev-develop | Latest release |
|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------:|:-------------------------------------------------------------------------------------------------------------------------------------:|
| [![Dev Build Status](https://travis-ci.org/aloframework/config.svg?branch=develop)](https://travis-ci.org/aloframework/config) | [![Release Build Status](https://travis-ci.org/aloframework/config.svg?branch=1.0)](https://travis-ci.org/aloframework/config) |
| [![SensioLabsInsight](https://insight.sensiolabs.com/projects/0cb6838a-c3bd-433a-81d0-ddea1aa4696d/mini.png)](https://insight.sensiolabs.com/projects/0cb6838a-c3bd-433a-81d0-ddea1aa4696d) | [![SensioLabsInsight](https://i.imgur.com/KygqLtf.png)](https://insight.sensiolabs.com/projects/0cb6838a-c3bd-433a-81d0-ddea1aa4696d) |
| dev-develop | Latest release |
|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------:|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------:|
| [![Dev Build Status](https://travis-ci.org/aloframework/config.svg?branch=develop)](https://travis-ci.org/aloframework/config) | [![Release Build Status](https://travis-ci.org/aloframework/config.svg?branch=master)](https://travis-ci.org/aloframework/config) |
| [![SensioLabsInsight](https://insight.sensiolabs.com/projects/0cb6838a-c3bd-433a-81d0-ddea1aa4696d/mini.png)](https://insight.sensiolabs.com/projects/0cb6838a-c3bd-433a-81d0-ddea1aa4696d) | [![SensioLabsInsight](https://i.imgur.com/KygqLtf.png)](https://insight.sensiolabs.com/projects/0cb6838a-c3bd-433a-81d0-ddea1aa4696d) |
| [![Coverage Status](https://coveralls.io/repos/aloframework/config/badge.svg?branch=develop&service=github)](https://coveralls.io/github/aloframework/config?branch=develop) | [![Coverage Status](https://coveralls.io/repos/aloframework/config/badge.svg?branch=master&service=github)](https://coveralls.io/github/aloframework/config?branch=master) |

## Installation ##

Expand Down
37 changes: 37 additions & 0 deletions apigen.neon
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Source file or directory to parse
source: 'src'
# Directory where to save the generated documentation
destination: 'docs'
# List of allowed file extensions
extensions: [php]
# Character set of source files
charset: [utf-8]

templateTheme: bootstrap

# Title of generated documentation
title: 'AloFramework Config 1.0 API'
# Grouping of classes
groups: auto

# Generate documentation for methods and properties with given access level
accessLevels: [public, protected]
# Generate documentation for elements marked as internal and display internal documentation parts
internal: No
# Generate documentation for PHP internal classes
php: Yes
# Generate tree view of classes, interfaces and exceptions
tree: Yes
# Generate documentation for deprecated classes, methods, properties and constants
deprecated: Yes
# Generate documentation of tasks
todo: Yes
# Generate highlighted source code files
noSourceCode: Yes
# Add a link to download documentation as a ZIP archive
download: No

# Don't display scanning and generating messages
quiet: No
# Display additional information in case of an error
debug: Yes
Loading

0 comments on commit 932dfaa

Please sign in to comment.