├── .gitignore ├── .gitmodules ├── README.md ├── api ├── .htaccess └── index.php ├── composer.json ├── composer.lock ├── docs └── index.php ├── favicon.ico ├── index.php ├── src ├── Builders │ ├── DataBuilder.php │ ├── RequestBuilder.php │ └── ResponseBuilder.php ├── Collections │ ├── AnimeInfoCollection.php │ ├── AnimeRankingCollection.php │ ├── AnimeSearchCollection.php │ ├── ApiSpecsCollection.php │ ├── Collection.php │ ├── MangaInfoCollection.php │ ├── MangaRankingCollection.php │ └── MangaSearchCollection.php ├── Controllers │ ├── AnimeController.php │ ├── ApiController.php │ └── MangaController.php ├── Exceptions │ ├── MatomariError.php │ ├── ModelKeyDoesNotExist.php │ └── ModelValueNotValid.php ├── Matomari.php ├── Models │ ├── AnimeInfoModel.php │ ├── AnimeRankingModel.php │ ├── AnimeSearchModel.php │ ├── BriefReferenceModel.php │ ├── MangaInfoModel.php │ ├── MangaRankingModel.php │ ├── MangaSearchModel.php │ ├── MatomariDate.php │ ├── Model.php │ ├── RankingModel.php │ └── SearchModel.php ├── Parsers │ ├── AnimeInfoParser.php │ ├── AnimeRankingParser.php │ ├── AnimeSearchParser.php │ ├── MangaInfoParser.php │ ├── MangaRankingParser.php │ ├── MangaSearchParser.php │ └── Parser.php └── components │ ├── Request.php │ ├── Response.php │ └── Time.php ├── style.css ├── waves.min.css └── waves.min.js /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | dates.txt 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/README.md -------------------------------------------------------------------------------- /api/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/api/.htaccess -------------------------------------------------------------------------------- /api/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/api/index.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/composer.lock -------------------------------------------------------------------------------- /docs/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/docs/index.php -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/index.php -------------------------------------------------------------------------------- /src/Builders/DataBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Builders/DataBuilder.php -------------------------------------------------------------------------------- /src/Builders/RequestBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Builders/RequestBuilder.php -------------------------------------------------------------------------------- /src/Builders/ResponseBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Builders/ResponseBuilder.php -------------------------------------------------------------------------------- /src/Collections/AnimeInfoCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Collections/AnimeInfoCollection.php -------------------------------------------------------------------------------- /src/Collections/AnimeRankingCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Collections/AnimeRankingCollection.php -------------------------------------------------------------------------------- /src/Collections/AnimeSearchCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Collections/AnimeSearchCollection.php -------------------------------------------------------------------------------- /src/Collections/ApiSpecsCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Collections/ApiSpecsCollection.php -------------------------------------------------------------------------------- /src/Collections/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Collections/Collection.php -------------------------------------------------------------------------------- /src/Collections/MangaInfoCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Collections/MangaInfoCollection.php -------------------------------------------------------------------------------- /src/Collections/MangaRankingCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Collections/MangaRankingCollection.php -------------------------------------------------------------------------------- /src/Collections/MangaSearchCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Collections/MangaSearchCollection.php -------------------------------------------------------------------------------- /src/Controllers/AnimeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Controllers/AnimeController.php -------------------------------------------------------------------------------- /src/Controllers/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Controllers/ApiController.php -------------------------------------------------------------------------------- /src/Controllers/MangaController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Controllers/MangaController.php -------------------------------------------------------------------------------- /src/Exceptions/MatomariError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Exceptions/MatomariError.php -------------------------------------------------------------------------------- /src/Exceptions/ModelKeyDoesNotExist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Exceptions/ModelKeyDoesNotExist.php -------------------------------------------------------------------------------- /src/Exceptions/ModelValueNotValid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Exceptions/ModelValueNotValid.php -------------------------------------------------------------------------------- /src/Matomari.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Matomari.php -------------------------------------------------------------------------------- /src/Models/AnimeInfoModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Models/AnimeInfoModel.php -------------------------------------------------------------------------------- /src/Models/AnimeRankingModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Models/AnimeRankingModel.php -------------------------------------------------------------------------------- /src/Models/AnimeSearchModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Models/AnimeSearchModel.php -------------------------------------------------------------------------------- /src/Models/BriefReferenceModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Models/BriefReferenceModel.php -------------------------------------------------------------------------------- /src/Models/MangaInfoModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Models/MangaInfoModel.php -------------------------------------------------------------------------------- /src/Models/MangaRankingModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Models/MangaRankingModel.php -------------------------------------------------------------------------------- /src/Models/MangaSearchModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Models/MangaSearchModel.php -------------------------------------------------------------------------------- /src/Models/MatomariDate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Models/MatomariDate.php -------------------------------------------------------------------------------- /src/Models/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Models/Model.php -------------------------------------------------------------------------------- /src/Models/RankingModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Models/RankingModel.php -------------------------------------------------------------------------------- /src/Models/SearchModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Models/SearchModel.php -------------------------------------------------------------------------------- /src/Parsers/AnimeInfoParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Parsers/AnimeInfoParser.php -------------------------------------------------------------------------------- /src/Parsers/AnimeRankingParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Parsers/AnimeRankingParser.php -------------------------------------------------------------------------------- /src/Parsers/AnimeSearchParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Parsers/AnimeSearchParser.php -------------------------------------------------------------------------------- /src/Parsers/MangaInfoParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Parsers/MangaInfoParser.php -------------------------------------------------------------------------------- /src/Parsers/MangaRankingParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Parsers/MangaRankingParser.php -------------------------------------------------------------------------------- /src/Parsers/MangaSearchParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Parsers/MangaSearchParser.php -------------------------------------------------------------------------------- /src/Parsers/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/Parsers/Parser.php -------------------------------------------------------------------------------- /src/components/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/components/Request.php -------------------------------------------------------------------------------- /src/components/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/components/Response.php -------------------------------------------------------------------------------- /src/components/Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/src/components/Time.php -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/style.css -------------------------------------------------------------------------------- /waves.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/waves.min.css -------------------------------------------------------------------------------- /waves.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxInFlame/matomari/HEAD/waves.min.js --------------------------------------------------------------------------------