Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a program like GITLAB written in PHP? [closed]

Tags:

php

gitlab

I'm looking for a program to run on my company's intranet to help sort out projects. GitHub it out of the question because I'm not going to pay money for private repos, but I love the way GitHub looks.

GITLAB is also nice and I would have chosen it except my servers are running PHP not Ruby. Is there a solution?

like image 693
user1206410 Avatar asked Apr 22 '12 13:04

user1206410


People also ask

Is GitLab really open source?

GitLab's open core is published under an MIT open source license. The rest is source-available. Everyone can contribute to making GitLab better. View our transparent roadmap and propose features your project needs.

Is GitHub itself open source?

GitHub is not open source. Pragmatically, this doesn't make much of a difference to most users. The vast majority of code put onto GitHub is, presumably, encouraged to be shared by everyone, so GitHub's primary function is a sort of public backup service.

Does GitLab work the same as GitHub?

The major difference between GitHub and GitLab is the platform each philosophy presents. GitHub has higher availability and is more focused on infrastructure performance, while GitLab is more focused on offering a features-based system with a centralized, integrated platform for web developers.

What is GitLab tool?

GitLab is a web-based Git repository that provides free open and private repositories, issue-following capabilities, and wikis. It is a complete DevOps platform that enables professionals to perform all the tasks in a project—from project planning and source code management to monitoring and security.


1 Answers

There are some projects for PHP but all are not that actively developed compared to GitLab

  • gitphp - http://gitphp.org/projects/gitphp/wiki ... kind-of dislike that the project's website is based on Redmine ... 18 contributors - only 1 seems to be active http://www.ohloh.net/p/gitphp/contributors
  • mtrack - http://mtrack.wezfurlong.org/features.html ... 9 contributors - 2 active http://www.ohloh.net/p/mtrack/contributors
  • Redmine-Php seems to be dead (homepage is down ... git-repo not updated since 1 year)
  • traq also seems interesting ... http://traq.io/

And of course, many more I don't know of :)

Feel free to search for similar projects on https://www.ohloh.net for trac, redmine, gitlab and other known systems.

In my opinion mtrack seems like the most promising as it provides functions like forking projects in the UI.

like image 54
SimonSimCity Avatar answered Oct 16 '22 04:10

SimonSimCity