Skip to content

Commit a8f6322

Browse files
authored
Merge pull request #929 from GravityPDF/psr-4
Adjust folder names to be PSR-4 compliant
2 parents d8003f7 + ae102ca commit a8f6322

149 files changed

Lines changed: 8 additions & 16 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

composer.json

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,7 @@
2222

2323
"autoload": {
2424
"psr-4": {
25-
"GFPDF\\": "src/",
26-
"GFPDF\\Controller\\": "src/controller/",
27-
"GFPDF\\Model\\": "src/model/",
28-
"GFPDF\\View\\": "src/view/",
29-
"GFPDF\\Statics\\": "src/statics/",
30-
"GFPDF\\Helper\\": ["src/helper/", "src/helper/abstract/", "src/helper/interface/", "src/helper/trait/"],
31-
"GFPDF\\Helper\\Licensing\\": "src/helper/licensing/",
32-
"GFPDF\\Helper\\Fields\\": "src/helper/fields/",
33-
"GFPDF\\Test\\": "tests/unit-tests/"
25+
"GFPDF\\": "src/"
3426
}
3527
},
3628

composer.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pdf.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
/*
4646
* Add our activation hook and deactivation hooks
4747
*/
48-
require_once PDF_PLUGIN_DIR . 'src/controller/Controller_Activation.php';
48+
require_once PDF_PLUGIN_DIR . 'src/Controller/Controller_Activation.php';
4949
register_deactivation_hook( __FILE__, array( 'Controller_Activation', 'deactivation' ) );
5050

5151
/**
File renamed without changes.

0 commit comments

Comments
 (0)