改名
This commit is contained in:
+3
-2
@@ -34,12 +34,13 @@
|
|||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
"Kiri\\": "core/",
|
"Kiri\\": "kiri-core/",
|
||||||
"Http\\Message\\": "http-message/",
|
"Http\\Message\\": "http-message/",
|
||||||
|
"Http\\Coroutine\\": "http-coroutine/",
|
||||||
"Http\\Handler\\": "http-handler/",
|
"Http\\Handler\\": "http-handler/",
|
||||||
"Server\\": "http-server/",
|
"Server\\": "http-server/",
|
||||||
"Gii\\": "kiri-gii/",
|
"Gii\\": "kiri-gii/",
|
||||||
"Annotation\\": "note/"
|
"Annotation\\": "kiri-note/"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"error.php",
|
"error.php",
|
||||||
|
|||||||
@@ -593,7 +593,7 @@ class Kiri
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
static::$_autoload[$class] = $file;
|
static::$_autoload[$class] = $file;
|
||||||
include_once "$file";
|
include_once "Kiri.php";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -606,7 +606,7 @@ class Kiri
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
$file = static::$_autoload[$className];
|
$file = static::$_autoload[$className];
|
||||||
require_once "$file";
|
require_once "Kiri.php";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user