-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathautoload_classmap.php
More file actions
22 lines (22 loc) · 1.64 KB
/
autoload_classmap.php
File metadata and controls
22 lines (22 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/**
* Kittencup Module
*
* @date 2014 14-4-15 下午8:41
* @copyright Copyright (c) 2014-2015 Kittencup. (http://www.kittencup.com)
* @license http://kittencup.com
*/
return array(
'KpBootstrap3\Module' => __DIR__ . '/Module.php',
'KpBootstrap3\Form\View\Helper\Form' => __DIR__ . '/src/KpBootstrap3/Form/View/Helper/Form.php',
'KpBootstrap3\Form\View\Helper\FormDateTime' => __DIR__ . '/src/KpBootstrap3/Form/View/Helper/FormDateTime.php',
'KpBootstrap3\Form\View\Helper\FormElementErrors' => __DIR__ . '/src/KpBootstrap3/Form/View/Helper/FormElementErrors.php',
'KpBootstrap3\Form\View\Helper\FormPassword' => __DIR__ . '/src/KpBootstrap3/Form/View/Helper/FormPassword.php',
'KpBootstrap3\Form\View\Helper\FormRow' => __DIR__ . '/src/KpBootstrap3/Form/View/Helper/FormRow.php',
'KpBootstrap3Test\Bootstrap' => __DIR__ . '/tests/Bootstrap.php',
'KpBootstrap3Test\Form\View\Helper\FormDateTimeTest' => __DIR__ . '/tests/KpBootstrap3Test/Form/View/Helper/FormDateTimeTest.php',
'KpBootstrap3Test\Form\View\Helper\FormElementErrorTest' => __DIR__ . '/tests/KpBootstrap3Test/Form/View/Helper/FormElementErrorTest.php',
'KpBootstrap3Test\Form\View\Helper\FormPasswordTest' => __DIR__ . '/tests/KpBootstrap3Test/Form/View/Helper/FormPasswordTest.php',
'KpBootstrap3Test\Form\View\Helper\FormRowTest' => __DIR__ . '/tests/KpBootstrap3Test/Form/View/Helper/FormRowTest.php',
'KpBootstrap3Test\Form\View\Helper\FormTest' => __DIR__ . '/tests/KpBootstrap3Test/Form/View/Helper/FormTest.php',
);