Skip to content

Commit fb3663f

Browse files
Merge pull request #2 from GrahamCampbell/develop
Release V0.2 Alpha
2 parents 7f19a55 + 5194bb6 commit fb3663f

File tree

8 files changed

+745
-14
lines changed

8 files changed

+745
-14
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

.scrutinizer.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
tools:
2+
php_mess_detector:
3+
enabled: true
4+
config:
5+
rulesets: [phpmd.xml]
6+
php_cpd:
7+
enabled: true
8+
php_pdepend:
9+
enabled: true

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@ CHANGE LOG
22
==========
33

44

5+
## V0.2 Alpha (25/08/2013)
6+
#### Major Release
7+
8+
* Updated the providers
9+
* Scrutinizer updates
10+
* Minor tweaks
11+
12+
513
## V0.1 Alpha (15/08/2013)
614
#### Major Release
715

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,14 @@ Laravel HTMLMin
22
===============
33

44

5-
[![Latest Stable Version](https://poser.pugx.org/graham-campbell/htmlmin/v/stable.png)](https://packagist.org/packages/graham-campbell/htmlmin)
5+
[![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/GrahamCampbell/laravel-htmlmin/trend.png)](https://bitdeli.com/free "Bitdeli Badge")
66
[![Build Status](https://travis-ci.org/GrahamCampbell/Laravel-HTMLMin.png?branch=master)](https://travis-ci.org/GrahamCampbell/Laravel-HTMLMin)
7-
[![Latest Unstable Version](https://poser.pugx.org/graham-campbell/htmlmin/v/unstable.png)](https://packagist.org/packages/graham-campbell/htmlmin)
8-
[![Build Status](https://travis-ci.org/GrahamCampbell/Laravel-HTMLMin.png?branch=develop)](https://travis-ci.org/GrahamCampbell/Laravel-HTMLMin)
7+
[![Latest Version](https://poser.pugx.org/graham-campbell/htmlmin/v/stable.png)](https://packagist.org/packages/graham-campbell/htmlmin)
98
[![Total Downloads](https://poser.pugx.org/graham-campbell/htmlmin/downloads.png)](https://packagist.org/packages/graham-campbell/htmlmin)
9+
[![Scrutinizer Quality Score](https://scrutinizer-ci.com/g/GrahamCampbell/Laravel-HTMLMin/badges/quality-score.png?s=b56aacf6a0c1b2e612c3d7dab63d212084e6b83b)](https://scrutinizer-ci.com/g/GrahamCampbell/Laravel-HTMLMin)
1010
[![Still Maintained](http://stillmaintained.com/GrahamCampbell/Laravel-HTMLMin.png)](http://stillmaintained.com/GrahamCampbell/Laravel-HTMLMin)
1111

1212

13-
[![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/GrahamCampbell/laravel-htmlmin/trend.png)](https://bitdeli.com/free "Bitdeli Badge")
14-
15-
1613
Copyright © [Graham Campbell](https://github.com/GrahamCampbell) 2013
1714

1815

@@ -25,6 +22,7 @@ Laravel HTMLMin is a simple HTML minifier for [Laravel 4](http://laravel.com).
2522

2623
* Laravel HTMLMin was created by, and is maintained by [Graham Campbell](https://github.com/GrahamCampbell).
2724
* Laravel HTMLMin uses [Travis CI](https://travis-ci.org/GrahamCampbell/Laravel-HTMLMin) to run tests to check if it's working as it should.
25+
* Laravel HTMLMin uses [Scrutinizer CI](https://scrutinizer-ci.com/g/GrahamCampbell/Laravel-HTMLMin) to run additional tests and checks.
2826
* Laravel HTMLMin uses [Composer](https://getcomposer.org) to load and manage dependencies.
2927
* Laravel HTMLMin provides a [change log](https://github.com/GrahamCampbell/Laravel-HTMLMin/blob/master/CHANGELOG.md), [releases](https://github.com/GrahamCampbell/Laravel-HTMLMin/releases), and a [wiki](https://github.com/GrahamCampbell/Laravel-HTMLMin/wiki).
3028
* Laravel HTMLMin is licensed under the MIT, available [here](https://github.com/GrahamCampbell/Laravel-HTMLMin/blob/master/LICENSE.md).

composer.json

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,16 @@
1111
],
1212
"require": {
1313
"php": ">=5.3.3",
14-
"illuminate/support": "4.0.*"
14+
"illuminate/support": "4.0.*@stable"
1515
},
1616
"require-dev": {
17-
"mockery/mockery": "dev-master",
17+
"mockery/mockery": "0.8.*@stable",
1818
"phpunit/phpunit": "3.7.*@stable"
1919
},
2020
"autoload": {
2121
"psr-0": {
2222
"GrahamCampbell\\HTMLMin": "src/"
2323
}
2424
},
25-
"extra": {
26-
"branch-alias": {
27-
"dev-master": "0.1.x-dev"
28-
}
29-
},
3025
"minimum-stability": "dev"
3126
}

0 commit comments

Comments
 (0)