├── .gitignore ├── LICENSE ├── README.chs.md ├── README.md ├── bower.json ├── composer.json ├── dist └── js │ └── dedid.js ├── src └── CDId.php ├── tests └── TestIdGenerator.php └── tools ├── create.php └── parse.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/dedid/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/dedid/HEAD/LICENSE -------------------------------------------------------------------------------- /README.chs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/dedid/HEAD/README.chs.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/dedid/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/dedid/HEAD/bower.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/dedid/HEAD/composer.json -------------------------------------------------------------------------------- /dist/js/dedid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/dedid/HEAD/dist/js/dedid.js -------------------------------------------------------------------------------- /src/CDId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/dedid/HEAD/src/CDId.php -------------------------------------------------------------------------------- /tests/TestIdGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/dedid/HEAD/tests/TestIdGenerator.php -------------------------------------------------------------------------------- /tools/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/dedid/HEAD/tools/create.php -------------------------------------------------------------------------------- /tools/parse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/dedid/HEAD/tools/parse.php --------------------------------------------------------------------------------