-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from adamturcsan/develop
First version for create-module
- Loading branch information
Showing
12 changed files
with
2,123 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
/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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/usr/bin/env php | ||
<?php | ||
|
||
/* | ||
* All rights reserved © 2016 Legow Hosting Kft. | ||
*/ | ||
|
||
namespace LegoW\ZFTools; | ||
|
||
chdir(dirname(__FILE__)); | ||
|
||
// Setup/verify autoloading | ||
if (file_exists($a = __DIR__ . '/../../../autoload.php')) { | ||
require $a; | ||
} elseif (file_exists($a = __DIR__ . '/../vendor/autoload.php')) { | ||
require $a; | ||
} else { | ||
fwrite(STDERR, 'Cannot locate autoloader; please run "composer install"' . PHP_EOL); | ||
exit(1); | ||
} | ||
|
||
$command = new CommandHandler(array_slice($argv, 1)); | ||
$command->dispatchCommand(); |
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,23 @@ | ||
{ | ||
"name": "legow/zf-tools", | ||
"description": "Tools for helping Zend Framework app development processes", | ||
"type": "library", | ||
"bin": [ | ||
"bin/zf-tools" | ||
], | ||
"require": { | ||
"php": "^7.0", | ||
"zendframework/zend-code": "^3.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^5.5", | ||
"zendframework/zend-modulemanager": "*" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"LegoW\\ZFTools\\": "src/" | ||
} | ||
}, | ||
"license": "MIT", | ||
"minimum-stability": "dev" | ||
} |
Oops, something went wrong.