├── .github └── workflows │ └── php.yml ├── LICENSE ├── README.md ├── bin └── quran ├── composer.json ├── config └── quran.php ├── data ├── ar.quran.xml └── quran-data.xml └── src ├── Commands ├── ConfigViewCommand.php ├── SurahCommand.php ├── TranslationAddCommand.php └── TranslationListCommand.php ├── Exceptions ├── AyahInvalid.php ├── AyahNotProvided.php ├── ExceedLimit.php ├── SurahInvalid.php ├── TranslationNotExists.php └── WrongArgument.php ├── Facades └── Quran.php ├── Quran.php ├── QuranServiceProvider.php ├── Repositories └── Source │ ├── SQLRepository.php │ ├── SourceInterface.php │ └── XMLRepository.php ├── Supports ├── Config.php ├── Downloader.php ├── Levenshtein.php └── XML.php └── TanzilTranslations.php /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizshukri/phpquran/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizshukri/phpquran/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizshukri/phpquran/HEAD/README.md -------------------------------------------------------------------------------- /bin/quran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizshukri/phpquran/HEAD/bin/quran -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizshukri/phpquran/HEAD/composer.json -------------------------------------------------------------------------------- /config/quran.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizshukri/phpquran/HEAD/config/quran.php -------------------------------------------------------------------------------- /data/ar.quran.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizshukri/phpquran/HEAD/data/ar.quran.xml -------------------------------------------------------------------------------- /data/quran-data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizshukri/phpquran/HEAD/data/quran-data.xml -------------------------------------------------------------------------------- /src/Commands/ConfigViewCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizshukri/phpquran/HEAD/src/Commands/ConfigViewCommand.php -------------------------------------------------------------------------------- /src/Commands/SurahCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizshukri/phpquran/HEAD/src/Commands/SurahCommand.php -------------------------------------------------------------------------------- /src/Commands/TranslationAddCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizshukri/phpquran/HEAD/src/Commands/TranslationAddCommand.php -------------------------------------------------------------------------------- /src/Commands/TranslationListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizshukri/phpquran/HEAD/src/Commands/TranslationListCommand.php -------------------------------------------------------------------------------- /src/Exceptions/AyahInvalid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizshukri/phpquran/HEAD/src/Exceptions/AyahInvalid.php -------------------------------------------------------------------------------- /src/Exceptions/AyahNotProvided.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizshukri/phpquran/HEAD/src/Exceptions/AyahNotProvided.php -------------------------------------------------------------------------------- /src/Exceptions/ExceedLimit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizshukri/phpquran/HEAD/src/Exceptions/ExceedLimit.php -------------------------------------------------------------------------------- /src/Exceptions/SurahInvalid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizshukri/phpquran/HEAD/src/Exceptions/SurahInvalid.php -------------------------------------------------------------------------------- /src/Exceptions/TranslationNotExists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizshukri/phpquran/HEAD/src/Exceptions/TranslationNotExists.php -------------------------------------------------------------------------------- /src/Exceptions/WrongArgument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizshukri/phpquran/HEAD/src/Exceptions/WrongArgument.php -------------------------------------------------------------------------------- /src/Facades/Quran.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizshukri/phpquran/HEAD/src/Facades/Quran.php -------------------------------------------------------------------------------- /src/Quran.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizshukri/phpquran/HEAD/src/Quran.php -------------------------------------------------------------------------------- /src/QuranServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizshukri/phpquran/HEAD/src/QuranServiceProvider.php -------------------------------------------------------------------------------- /src/Repositories/Source/SQLRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizshukri/phpquran/HEAD/src/Repositories/Source/SQLRepository.php -------------------------------------------------------------------------------- /src/Repositories/Source/SourceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizshukri/phpquran/HEAD/src/Repositories/Source/SourceInterface.php -------------------------------------------------------------------------------- /src/Repositories/Source/XMLRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizshukri/phpquran/HEAD/src/Repositories/Source/XMLRepository.php -------------------------------------------------------------------------------- /src/Supports/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizshukri/phpquran/HEAD/src/Supports/Config.php -------------------------------------------------------------------------------- /src/Supports/Downloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizshukri/phpquran/HEAD/src/Supports/Downloader.php -------------------------------------------------------------------------------- /src/Supports/Levenshtein.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizshukri/phpquran/HEAD/src/Supports/Levenshtein.php -------------------------------------------------------------------------------- /src/Supports/XML.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizshukri/phpquran/HEAD/src/Supports/XML.php -------------------------------------------------------------------------------- /src/TanzilTranslations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizshukri/phpquran/HEAD/src/TanzilTranslations.php --------------------------------------------------------------------------------