├── .github └── workflows │ └── tests.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── config └── sentimento.php ├── logo.png ├── phpunit.xml.dist ├── src ├── Enums │ ├── Decision.php │ └── Role.php ├── Facade │ └── Sentimento.php ├── Http │ └── Client.php ├── Sentimento.php ├── SentimentoServiceProvider.php └── ValueObjects │ └── Message.php └── tests ├── Pest.php ├── TestCase.php └── sentimento.php /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedash95/sentimento/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /.phpunit.result.cache 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedash95/sentimento/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedash95/sentimento/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedash95/sentimento/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedash95/sentimento/HEAD/composer.lock -------------------------------------------------------------------------------- /config/sentimento.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedash95/sentimento/HEAD/config/sentimento.php -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedash95/sentimento/HEAD/logo.png -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedash95/sentimento/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Enums/Decision.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedash95/sentimento/HEAD/src/Enums/Decision.php -------------------------------------------------------------------------------- /src/Enums/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedash95/sentimento/HEAD/src/Enums/Role.php -------------------------------------------------------------------------------- /src/Facade/Sentimento.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedash95/sentimento/HEAD/src/Facade/Sentimento.php -------------------------------------------------------------------------------- /src/Http/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedash95/sentimento/HEAD/src/Http/Client.php -------------------------------------------------------------------------------- /src/Sentimento.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedash95/sentimento/HEAD/src/Sentimento.php -------------------------------------------------------------------------------- /src/SentimentoServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedash95/sentimento/HEAD/src/SentimentoServiceProvider.php -------------------------------------------------------------------------------- /src/ValueObjects/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedash95/sentimento/HEAD/src/ValueObjects/Message.php -------------------------------------------------------------------------------- /tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedash95/sentimento/HEAD/tests/Pest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedash95/sentimento/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/sentimento.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedash95/sentimento/HEAD/tests/sentimento.php --------------------------------------------------------------------------------