Compare commits
11 Commits
stratify-u
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cb451435e5 | ||
|
|
31f21a66b3 | ||
|
|
f466d47cb5 | ||
|
|
ba1385cf18 | ||
|
|
221ad8514d | ||
|
|
6c17e62f24 | ||
|
|
2b163079b1 | ||
|
|
dc97daa943 | ||
|
|
15c7fe3005 | ||
|
|
141631b023 | ||
|
|
706f916c35 |
@@ -1,6 +1,8 @@
|
|||||||
# Is It Maintained?
|
# Is It Maintained?
|
||||||
|
|
||||||
Monitoring open source projects activity.
|
Monitoring open source projects activity.
|
||||||
|
[](http://isitmaintained.com/project/mnapoli/IsItMaintained "Average time to resolve an issue")
|
||||||
|
[](http://isitmaintained.com/project/mnapoli/IsItMaintained "Percentage of issues still open")
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
@@ -46,3 +48,7 @@ API token (https://github.com/settings/applications) and set it in `parameters.p
|
|||||||
- PHP 7.0
|
- PHP 7.0
|
||||||
- [Puli](http://puli.io) installed
|
- [Puli](http://puli.io) installed
|
||||||
- GD extension
|
- GD extension
|
||||||
|
|
||||||
|
## Feature requests
|
||||||
|
|
||||||
|
Issues are disabled for now on this repository because they were filling up with feature requests. If you want a feature to be added, pull requests are welcome.
|
||||||
|
|||||||
@@ -17,8 +17,8 @@
|
|||||||
<link href="/css/theme.css" rel="stylesheet">
|
<link href="/css/theme.css" rel="stylesheet">
|
||||||
|
|
||||||
<link href="/vendor/fontawesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
|
<link href="/vendor/fontawesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
|
||||||
<link href="http://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
|
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
|
||||||
<link href="http://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css">
|
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css">
|
||||||
|
|
||||||
<script src="/vendor/jquery/dist/jquery.min.js"></script>
|
<script src="/vendor/jquery/dist/jquery.min.js"></script>
|
||||||
|
|
||||||
@@ -76,10 +76,9 @@
|
|||||||
-
|
-
|
||||||
<a href="http://mnapoli.fr">Matthieu Napoli</a>
|
<a href="http://mnapoli.fr">Matthieu Napoli</a>
|
||||||
-
|
-
|
||||||
<a href="https://github.com/mnapoli/Maintained">
|
<a href="https://github.com/mnapoli/Maintained"><i class="fa fa-github"></i>GitHub</a>
|
||||||
<i class="fa fa-github"></i>
|
-
|
||||||
GitHub
|
Supported by <a href="https://prettyci.com/" title="Continuous integration for PHP coding standards">PrettyCI</a>
|
||||||
</a>
|
|
||||||
-
|
-
|
||||||
Theme by <a href="http://startbootstrap.com/template-overviews/freelancer/">
|
Theme by <a href="http://startbootstrap.com/template-overviews/freelancer/">
|
||||||
Start Bootstrap
|
Start Bootstrap
|
||||||
|
|||||||
@@ -35,12 +35,12 @@ class HomeController
|
|||||||
'pallets/flask' => 'Flask',
|
'pallets/flask' => 'Flask',
|
||||||
'expressjs/express' => 'Express',
|
'expressjs/express' => 'Express',
|
||||||
'symfony/symfony' => 'Symfony',
|
'symfony/symfony' => 'Symfony',
|
||||||
'zendframework/zf2' => 'Zend Framework 2',
|
'zendframework/zendframework' => 'Zend Framework',
|
||||||
'laravel/framework' => 'Laravel',
|
'laravel/framework' => 'Laravel',
|
||||||
'angular/angular.js' => 'AngularJS',
|
'angular/angular.js' => 'AngularJS',
|
||||||
'meteor/meteor' => 'Meteor',
|
'meteor/meteor' => 'Meteor',
|
||||||
'facebook/react' => 'React',
|
'facebook/react' => 'React',
|
||||||
'ariya/phantomjs' => 'PhantomJS',
|
'facebook/react-native' => 'React Native',
|
||||||
'gulpjs/gulp' => 'Gulp',
|
'gulpjs/gulp' => 'Gulp',
|
||||||
'robbyrussell/oh-my-zsh' => 'Oh My Zsh',
|
'robbyrussell/oh-my-zsh' => 'Oh My Zsh',
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -36,6 +36,10 @@ class StatisticsComputer implements StatisticsProvider
|
|||||||
'wip',
|
'wip',
|
||||||
'rfc',
|
'rfc',
|
||||||
'wishlist',
|
'wishlist',
|
||||||
|
'question',
|
||||||
|
'cleanup',
|
||||||
|
'discussion',
|
||||||
|
'meta',
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -50,6 +54,10 @@ class StatisticsComputer implements StatisticsProvider
|
|||||||
'.*test.*',
|
'.*test.*',
|
||||||
'.*suggestion.*',
|
'.*suggestion.*',
|
||||||
'.*refactoring.*',
|
'.*refactoring.*',
|
||||||
|
'.*question.*',
|
||||||
|
'.*cleanup.*',
|
||||||
|
'.*discussion.*',
|
||||||
|
'.*meta.*',
|
||||||
'(.*[\s\.-])?wip',
|
'(.*[\s\.-])?wip',
|
||||||
'(.*[\s\.-])?rfc',
|
'(.*[\s\.-])?rfc',
|
||||||
'(.*[\s\.-])?poc',
|
'(.*[\s\.-])?poc',
|
||||||
|
|||||||
Reference in New Issue
Block a user