Skip to content

Commit

Permalink
Organization rename
Browse files Browse the repository at this point in the history
  • Loading branch information
polothy committed Sep 10, 2018
1 parent 192b843 commit cdd8bb6
Show file tree
Hide file tree
Showing 158 changed files with 841 additions and 709 deletions.
2 changes: 1 addition & 1 deletion .php_cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This file is part of the Moodle Plugin CI package.
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
Copyright (c) 2017 Blackboard Inc. (http://www.blackboard.com)
Copyright (c) 2018 Blackboard Inc. (http://www.blackboard.com)
License http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
EOF;

Expand Down
2 changes: 1 addition & 1 deletion .travis.dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ before_install:
- nvm install 8.9
- nvm use 8.9
- cd ../..
- composer create-project -n --no-dev --prefer-dist moodlerooms/moodle-plugin-ci ci ^2
- composer create-project -n --no-dev --prefer-dist blackboard-open-source/moodle-plugin-ci ci ^2
- export PATH="$(cd ci/bin; pwd):$(cd ci/vendor/bin; pwd):$PATH"

install:
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,5 +97,5 @@ jobs:
file: build/moodle-plugin-ci.phar
skip_cleanup: true
on:
repo: moodlerooms/moodle-plugin-ci
repo: blackboard-open-source/moodle-plugin-ci
tags: true
12 changes: 5 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
[![Latest Stable Version](https://poser.pugx.org/moodlerooms/moodle-plugin-ci/v/stable)](https://packagist.org/packages/moodlerooms/moodle-plugin-ci)
[![Build Status](https://travis-ci.org/moodlerooms/moodle-plugin-ci.svg?branch=master)](https://travis-ci.org/moodlerooms/moodle-plugin-ci)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/moodlerooms/moodle-plugin-ci/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/moodlerooms/moodle-plugin-ci/?branch=master)
[![Code Coverage](https://scrutinizer-ci.com/g/moodlerooms/moodle-plugin-ci/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/moodlerooms/moodle-plugin-ci/?branch=master)
[![Total Downloads](https://poser.pugx.org/moodlerooms/moodle-plugin-ci/downloads)](https://packagist.org/packages/moodlerooms/moodle-plugin-ci)
[![License](https://poser.pugx.org/moodlerooms/moodle-plugin-ci/license)](https://packagist.org/packages/moodlerooms/moodle-plugin-ci)
[![Latest Stable Version](https://poser.pugx.org/blackboard-open-source/moodle-plugin-ci/v/stable)](https://packagist.org/packages/blackboard-open-source/moodle-plugin-ci)
[![Build Status](https://travis-ci.org/blackboard-open-source/moodle-plugin-ci.svg?branch=master)](https://travis-ci.org/blackboard-open-source/moodle-plugin-ci)
[![Total Downloads](https://poser.pugx.org/blackboard-open-source/moodle-plugin-ci/downloads)](https://packagist.org/packages/blackboard-open-source/moodle-plugin-ci)
[![License](https://poser.pugx.org/blackboard-open-source/moodle-plugin-ci/license)](https://packagist.org/packages/blackboard-open-source/moodle-plugin-ci)

The goal of this project is to facilitate the running of tests and code analysis against a Moodle plugin in
[Travis CI](https://travis-ci.org). All of these tests and tools are run everytime a change is pushed to a GitHub
branch or pull request.

All documentation, guides, change log, etc can be found here: https://moodlerooms.github.io/moodle-plugin-ci/
All documentation, guides, change log, etc can be found here: https://blackboard-open-source.github.io/moodle-plugin-ci/
38 changes: 19 additions & 19 deletions bin/moodle-plugin-ci
Original file line number Diff line number Diff line change
Expand Up @@ -7,28 +7,28 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* Copyright (c) 2017 Blackboard Inc. (http://www.blackboard.com)
* Copyright (c) 2018 Blackboard Inc. (http://www.blackboard.com)
* License http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/

use Moodlerooms\MoodlePluginCI\Command\AddConfigCommand;
use Moodlerooms\MoodlePluginCI\Command\AddPluginCommand;
use Moodlerooms\MoodlePluginCI\Command\BehatCommand;
use Moodlerooms\MoodlePluginCI\Command\CodeCheckerCommand;
use Moodlerooms\MoodlePluginCI\Command\CodeFixerCommand;
use Moodlerooms\MoodlePluginCI\Command\CompletionCommand;
use Moodlerooms\MoodlePluginCI\Command\CopyPasteDetectorCommand;
use Moodlerooms\MoodlePluginCI\Command\CoverallsUploadCommand;
use Moodlerooms\MoodlePluginCI\Command\GruntCommand;
use Moodlerooms\MoodlePluginCI\Command\InstallCommand;
use Moodlerooms\MoodlePluginCI\Command\MessDetectorCommand;
use Moodlerooms\MoodlePluginCI\Command\MustacheCommand;
use Moodlerooms\MoodlePluginCI\Command\ParallelCommand;
use Moodlerooms\MoodlePluginCI\Command\PHPLintCommand;
use Moodlerooms\MoodlePluginCI\Command\PHPUnitCommand;
use Moodlerooms\MoodlePluginCI\Command\SavePointsCommand;
use Moodlerooms\MoodlePluginCI\Command\SelfUpdateCommand;
use Moodlerooms\MoodlePluginCI\Command\ValidateCommand;
use MoodlePluginCI\Command\AddConfigCommand;
use MoodlePluginCI\Command\AddPluginCommand;
use MoodlePluginCI\Command\BehatCommand;
use MoodlePluginCI\Command\CodeCheckerCommand;
use MoodlePluginCI\Command\CodeFixerCommand;
use MoodlePluginCI\Command\CompletionCommand;
use MoodlePluginCI\Command\CopyPasteDetectorCommand;
use MoodlePluginCI\Command\CoverallsUploadCommand;
use MoodlePluginCI\Command\GruntCommand;
use MoodlePluginCI\Command\InstallCommand;
use MoodlePluginCI\Command\MessDetectorCommand;
use MoodlePluginCI\Command\MustacheCommand;
use MoodlePluginCI\Command\ParallelCommand;
use MoodlePluginCI\Command\PHPLintCommand;
use MoodlePluginCI\Command\PHPUnitCommand;
use MoodlePluginCI\Command\SavePointsCommand;
use MoodlePluginCI\Command\SelfUpdateCommand;
use MoodlePluginCI\Command\ValidateCommand;
use Symfony\Component\Console\Application;
use Symfony\Component\Dotenv\Dotenv;

Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"name": "moodlerooms/moodle-plugin-ci",
"name": "blackboard-open-source/moodle-plugin-ci",
"description": "Assists with running Moodle plugins in Travis CI",
"keywords": ["moodle", "travis", "ci", "testing"],
"type": "project",
"license": "GPL-3.0",
"authors": [
{
"name": "Mark Nielsen",
"email": "mark@moodlerooms.com",
"homepage": "http://moodlerooms.com",
"email": "mark.nielsen@blackboard.com",
"homepage": "https://www.blackboard.com",
"role": "Developer"
},
{
"name": "Sam Chaffee",
"email": "sam@moodlerooms.com",
"homepage": "http://moodlerooms.com",
"email": "sam.chaffee@blackboard.com",
"homepage": "https://www.blackboard.com",
"role": "Developer"
}
],
Expand Down Expand Up @@ -80,12 +80,12 @@
},
"autoload": {
"psr-4": {
"Moodlerooms\\MoodlePluginCI\\": "src/"
"MoodlePluginCI\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Moodlerooms\\MoodlePluginCI\\Tests\\": "tests/"
"MoodlePluginCI\\Tests\\": "tests/"
}
},
"bin": [
Expand Down
Loading

0 comments on commit cdd8bb6

Please sign in to comment.