File tree 7 files changed +36
-47
lines changed
7 files changed +36
-47
lines changed Original file line number Diff line number Diff line change
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.
Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " mediact /composer-unclog-plugin" ,
2
+ "name" : " youwe /composer-unclog-plugin" ,
3
3
"description" : " Shows warnings if you can optimise your composer files even further." ,
4
4
"type" : " composer-plugin" ,
5
5
"license" : [
6
6
" proprietary"
7
7
],
8
8
"authors" : [
9
9
{
10
- "name" : " MediaCT B.V. " ,
11
-
10
+ "name" : " Youwe " ,
11
+
12
12
},
13
13
{
14
14
"name" : " Marcel Frankruijter" ,
17
17
],
18
18
"minimum-stability" : " stable" ,
19
19
"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 "
22
22
},
23
23
"require-dev" : {
24
- "mediact/testing-suite" : " @stable" ,
25
- "mediact/coding-standard-magento2" : " @stable"
24
+ "phpunit/phpunit" : " @stable"
26
25
},
27
26
"autoload" : {
28
27
"psr-4" : {
29
- "Mediact \\ ComposerUnclogPlugin\\ " : " src/"
28
+ "Youwe \\ ComposerUnclogPlugin\\ " : " src/"
30
29
}
31
30
},
32
31
"autoload-dev" : {
33
32
"psr-4" : {
34
- "Mediact \\ ComposerUnclogPlugin\\ Tests\\ " : " tests"
33
+ "Youwe \\ ComposerUnclogPlugin\\ Tests\\ " : " tests"
35
34
}
36
35
},
37
36
"config" : {
38
37
"sort-packages" : true
39
38
},
40
39
"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"
45
41
},
46
42
"archive" : {
47
43
"exclude" : [
48
44
" /phpunit.xml" ,
49
- " /phpmd.xml" ,
50
- " /phpstan.neon" ,
51
- " /phpcs.xml" ,
52
45
" /.gitignore" ,
53
46
" /tests"
54
47
]
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
<?php
2
+
2
3
/**
3
- * Copyright MediaCT . All rights reserved.
4
- * https://www.mediact.nl
4
+ * Copyright © Youwe . All rights reserved.
5
+ * https://www.youweagency.com
5
6
*/
6
7
7
- namespace Mediact \ComposerUnclogPlugin ;
8
+ declare (strict_types=1 );
9
+
10
+ namespace Youwe \ComposerUnclogPlugin ;
8
11
9
12
use Composer \Composer ;
10
13
use Composer \Config ;
Original file line number Diff line number Diff line change 1
1
<?php
2
+
2
3
/**
3
- * Copyright MediaCT . All rights reserved.
4
- * https://www.mediact.nl
4
+ * Copyright © Youwe . All rights reserved.
5
+ * https://www.youweagency.com
5
6
*/
6
7
7
- namespace Mediact \ComposerUnclogPlugin \Tests ;
8
+ declare (strict_types=1 );
9
+
10
+ namespace Youwe \ComposerUnclogPlugin \Tests ;
8
11
9
12
use Composer \Composer ;
10
13
use Composer \Config ;
13
16
use Composer \Package \Package ;
14
17
use Composer \Plugin \CommandEvent ;
15
18
use Composer \Plugin \PluginEvents ;
16
- use Mediact \ComposerUnclogPlugin \Plugin ;
17
19
use PHPUnit \Framework \TestCase ;
20
+ use Youwe \ComposerUnclogPlugin \Plugin ;
18
21
19
22
/**
20
- * @coversDefaultClass \Mediact \ComposerUnclogPlugin\Plugin
23
+ * @coversDefaultClass \Youwe \ComposerUnclogPlugin\Plugin
21
24
*/
22
25
class PluginTest extends TestCase
23
26
{
You can’t perform that action at this time.
0 commit comments