├── CREDITS ├── EXPERIMENTAL ├── README ├── config.m4 ├── config.w32 ├── php_splclassloader.h ├── splclassloader.c └── tests ├── 001.phpt ├── 002.phpt ├── 003.phpt ├── 004.phpt ├── 005.phpt ├── 006.phpt ├── 007.phpt ├── 008.phpt ├── 009.phpt ├── 010.phpt ├── Dummy.php ├── Dummyb.php ├── Dummyc.class.php ├── for_bench ├── SplClassLoaderUser.php ├── fs_gen.py ├── index_ext.php ├── index_ext_with_ns.php ├── index_ext_with_path.php ├── index_user.php ├── index_user_with_ns.php └── index_user_with_path.php ├── ns1 ├── Dummy1.php └── ns2 │ └── Dummy2.php └── ns_1b ├── Dummy1b.php ├── NS2C ├── NS3B.php └── NS3B │ └── Name.php └── ns2b_ └── Dummy2b.php /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/CREDITS -------------------------------------------------------------------------------- /EXPERIMENTAL: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/README -------------------------------------------------------------------------------- /config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/config.m4 -------------------------------------------------------------------------------- /config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/config.w32 -------------------------------------------------------------------------------- /php_splclassloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/php_splclassloader.h -------------------------------------------------------------------------------- /splclassloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/splclassloader.c -------------------------------------------------------------------------------- /tests/001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/tests/001.phpt -------------------------------------------------------------------------------- /tests/002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/tests/002.phpt -------------------------------------------------------------------------------- /tests/003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/tests/003.phpt -------------------------------------------------------------------------------- /tests/004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/tests/004.phpt -------------------------------------------------------------------------------- /tests/005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/tests/005.phpt -------------------------------------------------------------------------------- /tests/006.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/tests/006.phpt -------------------------------------------------------------------------------- /tests/007.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/tests/007.phpt -------------------------------------------------------------------------------- /tests/008.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/tests/008.phpt -------------------------------------------------------------------------------- /tests/009.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/tests/009.phpt -------------------------------------------------------------------------------- /tests/010.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/tests/010.phpt -------------------------------------------------------------------------------- /tests/Dummy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/tests/Dummy.php -------------------------------------------------------------------------------- /tests/Dummyb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/tests/Dummyb.php -------------------------------------------------------------------------------- /tests/Dummyc.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/tests/Dummyc.class.php -------------------------------------------------------------------------------- /tests/for_bench/SplClassLoaderUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/tests/for_bench/SplClassLoaderUser.php -------------------------------------------------------------------------------- /tests/for_bench/fs_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/tests/for_bench/fs_gen.py -------------------------------------------------------------------------------- /tests/for_bench/index_ext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/tests/for_bench/index_ext.php -------------------------------------------------------------------------------- /tests/for_bench/index_ext_with_ns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/tests/for_bench/index_ext_with_ns.php -------------------------------------------------------------------------------- /tests/for_bench/index_ext_with_path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/tests/for_bench/index_ext_with_path.php -------------------------------------------------------------------------------- /tests/for_bench/index_user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/tests/for_bench/index_user.php -------------------------------------------------------------------------------- /tests/for_bench/index_user_with_ns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/tests/for_bench/index_user_with_ns.php -------------------------------------------------------------------------------- /tests/for_bench/index_user_with_path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/tests/for_bench/index_user_with_path.php -------------------------------------------------------------------------------- /tests/ns1/Dummy1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/tests/ns1/Dummy1.php -------------------------------------------------------------------------------- /tests/ns1/ns2/Dummy2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/tests/ns1/ns2/Dummy2.php -------------------------------------------------------------------------------- /tests/ns_1b/Dummy1b.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/tests/ns_1b/Dummy1b.php -------------------------------------------------------------------------------- /tests/ns_1b/NS2C/NS3B.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/tests/ns_1b/NS2C/NS3B.php -------------------------------------------------------------------------------- /tests/ns_1b/NS2C/NS3B/Name.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/tests/ns_1b/NS2C/NS3B/Name.php -------------------------------------------------------------------------------- /tests/ns_1b/ns2b_/Dummy2b.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagoto/splclassloader/HEAD/tests/ns_1b/ns2b_/Dummy2b.php --------------------------------------------------------------------------------