-
- Downloads
Merge branch 'feature/factory' into 'master'
Feature/factory See merge request !4
Showing
- README.md 15 additions, 2 deletionsREADME.md
- composer.json 2 additions, 1 deletioncomposer.json
- phpunit-integration.xml 2 additions, 0 deletionsphpunit-integration.xml
- src/WPDesk/Notice/AjaxHandler.php 5 additions, 1 deletionsrc/WPDesk/Notice/AjaxHandler.php
- src/WPDesk/Notice/Factory.php 48 additions, 0 deletionssrc/WPDesk/Notice/Factory.php
- src/WPDesk/Notice/Notice.php 83 additions, 14 deletionssrc/WPDesk/Notice/Notice.php
- src/WPDesk/Notice/PermanentDismissibleNotice.php 5 additions, 4 deletionssrc/WPDesk/Notice/PermanentDismissibleNotice.php
- src/WPDesk/functions.php 63 additions, 0 deletionssrc/WPDesk/functions.php
- tests/integration/TestFunctions.php 32 additions, 0 deletionstests/integration/TestFunctions.php
- tests/integration/TestNotice.php 72 additions, 2 deletionstests/integration/TestNotice.php
- tests/integration/TestPermanentDismissinleNotice.php 1 addition, 1 deletiontests/integration/TestPermanentDismissinleNotice.php
... | @@ -25,7 +25,8 @@ | ... | @@ -25,7 +25,8 @@ |
"wimg/php-compatibility": "^8" | "wimg/php-compatibility": "^8" | ||
}, | }, | ||
"autoload": { | "autoload": { | ||
"psr-4": {"WPDesk\\Notice\\": "src/WPDesk/Notice/"} | "psr-4": {"WPDesk\\Notice\\": "src/WPDesk/Notice/"}, | ||
"files": ["src/WPDesk/functions.php"] | |||
}, | }, | ||
"autoload-dev": { | "autoload-dev": { | ||
}, | }, | ||
... | ... |
src/WPDesk/Notice/Factory.php
0 → 100644
src/WPDesk/functions.php
0 → 100644
tests/integration/TestFunctions.php
0 → 100644
Please register or sign in to comment