-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
db481bd
commit a944272
Showing
6 changed files
with
355 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,3 +21,5 @@ node_modules/ | |
*.log | ||
*.sql | ||
*.sqlite | ||
|
||
/vendor/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,10 @@ | ||
# aquila-features | ||
Advanced WordPress Plugin Development | ||
|
||
##setup | ||
How to set up the plugin. | ||
|
||
#development | ||
|
||
- `npm install && composer install` | ||
- `npm run dev` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,3 +14,4 @@ | |
* Domain Path: /languages | ||
*/ | ||
|
||
require_once 'vendor/autoload.php'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"name": "imransayed/aquila-features", | ||
"description": "Aquila Features WordPress Plugin", | ||
"license": "GPL", | ||
"require-dev": { | ||
"wp-coding-standards/wpcs": "^2.3", | ||
"phpcompatibility/phpcompatibility-wp": "^2.1" | ||
}, | ||
"config": { | ||
"allow-plugins": { | ||
"dealerdirect/phpcodesniffer-composer-installer": true | ||
} | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Imran Sayed", | ||
"email": "codeytek.academy@gmail.com" | ||
} | ||
], | ||
"autoload": { | ||
"psr-4": { | ||
"AquilaFeatures\\": "src/" | ||
}, | ||
"classmap": [ | ||
"includes/" | ||
] | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
/** | ||
* Module interface | ||
* | ||
* @package aquila-features | ||
*/ | ||
|
||
namespace AquilaFeatures\Interfaces; | ||
|
||
interface Module { | ||
|
||
/** | ||
* Register the module in WordPress | ||
* | ||
* Most of the modules follow fluent interface. | ||
*/ | ||
public function register_this(); | ||
} |