Skip to content

Commit 2e70890

Browse files
authored
Merge pull request #1 from YouweGit/feature/OTPBBBBBZP-117
Feature/otpbbbbbzp 117
2 parents b1ec037 + 133471c commit 2e70890

7 files changed

+36
-47
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6+
7+
## 1.2.0
8+
### Changed
9+
- Vendor name of the module to Youwe.
10+
11+
### Added
12+
- Declare strict type to all files.
13+
- Copyrights.

composer.json

+9-16
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"name": "mediact/composer-unclog-plugin",
2+
"name": "youwe/composer-unclog-plugin",
33
"description": "Shows warnings if you can optimise your composer files even further.",
44
"type": "composer-plugin",
55
"license": [
66
"proprietary"
77
],
88
"authors": [
99
{
10-
"name": "MediaCT B.V.",
11-
"email": "[email protected]"
10+
"name": "Youwe",
11+
"email": "[email protected]"
1212
},
1313
{
1414
"name": "Marcel Frankruijter",
@@ -17,38 +17,31 @@
1717
],
1818
"minimum-stability": "stable",
1919
"require": {
20-
"php": "^7.1",
21-
"composer-plugin-api": "^1.1 || ^2.0"
20+
"composer-plugin-api": "^1.1 || ^2.0",
21+
"php": "^7.1"
2222
},
2323
"require-dev": {
24-
"mediact/testing-suite": "@stable",
25-
"mediact/coding-standard-magento2": "@stable"
24+
"phpunit/phpunit": "@stable"
2625
},
2726
"autoload": {
2827
"psr-4": {
29-
"Mediact\\ComposerUnclogPlugin\\": "src/"
28+
"Youwe\\ComposerUnclogPlugin\\": "src/"
3029
}
3130
},
3231
"autoload-dev": {
3332
"psr-4": {
34-
"Mediact\\ComposerUnclogPlugin\\Tests\\": "tests"
33+
"Youwe\\ComposerUnclogPlugin\\Tests\\": "tests"
3534
}
3635
},
3736
"config": {
3837
"sort-packages": true
3938
},
4039
"extra": {
41-
"grumphp": {
42-
"config-default-path": "vendor/mediact/testing-suite/config/default/grumphp.yml"
43-
},
44-
"class": "Mediact\\ComposerUnclogPlugin\\Plugin"
40+
"class": "Youwe\\ComposerUnclogPlugin\\Plugin"
4541
},
4642
"archive": {
4743
"exclude": [
4844
"/phpunit.xml",
49-
"/phpmd.xml",
50-
"/phpstan.neon",
51-
"/phpcs.xml",
5245
"/.gitignore",
5346
"/tests"
5447
]

phpcs.xml

-10
This file was deleted.

phpmd.xml

-10
This file was deleted.

phpstan.neon

-3
This file was deleted.

src/Plugin.php

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
<?php
2+
23
/**
3-
* Copyright MediaCT. All rights reserved.
4-
* https://www.mediact.nl
4+
* Copyright © Youwe. All rights reserved.
5+
* https://www.youweagency.com
56
*/
67

7-
namespace Mediact\ComposerUnclogPlugin;
8+
declare(strict_types=1);
9+
10+
namespace Youwe\ComposerUnclogPlugin;
811

912
use Composer\Composer;
1013
use Composer\Config;

tests/PluginTest.php

+8-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
<?php
2+
23
/**
3-
* Copyright MediaCT. All rights reserved.
4-
* https://www.mediact.nl
4+
* Copyright © Youwe. All rights reserved.
5+
* https://www.youweagency.com
56
*/
67

7-
namespace Mediact\ComposerUnclogPlugin\Tests;
8+
declare(strict_types=1);
9+
10+
namespace Youwe\ComposerUnclogPlugin\Tests;
811

912
use Composer\Composer;
1013
use Composer\Config;
@@ -13,11 +16,11 @@
1316
use Composer\Package\Package;
1417
use Composer\Plugin\CommandEvent;
1518
use Composer\Plugin\PluginEvents;
16-
use Mediact\ComposerUnclogPlugin\Plugin;
1719
use PHPUnit\Framework\TestCase;
20+
use Youwe\ComposerUnclogPlugin\Plugin;
1821

1922
/**
20-
* @coversDefaultClass \Mediact\ComposerUnclogPlugin\Plugin
23+
* @coversDefaultClass \Youwe\ComposerUnclogPlugin\Plugin
2124
*/
2225
class PluginTest extends TestCase
2326
{

0 commit comments

Comments
 (0)