Skip to content
This repository has been archived by the owner on Dec 7, 2019. It is now read-only.

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphschindler committed Mar 1, 2013
0 parents commit 5d69823
Show file tree
Hide file tree
Showing 14 changed files with 2,081 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Module.php
@@ -0,0 +1,7 @@
<?php
/**
* This file is placed here for compatibility with Zendframework's ModuleManager.
* It allows usage of this module even without composer.
* The original Module.php lives in 'src' directory in order to respect PSR-0
*/
require_once __DIR__ . '/src/Namespacer/Module.php';
Empty file added README.md
Empty file.
Empty file added bin/create-phar.php
Empty file.
37 changes: 37 additions & 0 deletions composer.json
@@ -0,0 +1,37 @@
{
"name": "zendframework/namespacer",
"description": "A tool to facility converting code to namespaces.",
"keywords": [
"zf2",
"tool"
],
"homepage": "http://framework.zend.com/",
"license": "BSD-3-Clause",
"repositories": [
{
"type": "composer",
"url": "http://packages.zendframework.com/"
}
],
"autoload": {
"psr-0": {
"Namespacer\\": "src/"
}
},
"require": {
"php": ">=5.3.3",
"zendframework/zend-mvc": ">=2.0.0",
"zendframework/zend-modulemanager": ">=2.0.0",
"zendframework/zend-console": ">=2.0.0",
"zendframework/zend-code": ">=2.0.0",
"zendframework/zend-config": ">=2.0.0",
"zendframework/zend-view": ">=2.0.0",
"zendframework/zend-stdlib": ">=2.0.0",
"zendframework/zend-servicemanager": ">=2.0.0",
"zendframework/zend-file": ">=2.0.0",
"zendframework/zend-loader": ">=2.0.0",
"zendframework/zend-version": ">=2.0.0",
"zendframework/zend-text": ">=2.0.0"
},
"bin": ["namespacer.php"]
}

0 comments on commit 5d69823

Please sign in to comment.