├── App ├── Models │ └── User.php └── Services │ └── UserService.php ├── composer.json ├── composer.lock ├── composer.phar ├── config.php ├── public_html ├── .htaccess ├── client.html ├── client.php └── index.php ├── serie_login.sql └── vendor ├── autoload.php └── composer ├── ClassLoader.php ├── InstalledVersions.php ├── LICENSE ├── autoload_classmap.php ├── autoload_files.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php ├── installed.json └── installed.php /App/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelCapo/api_rest_2021/HEAD/App/Models/User.php -------------------------------------------------------------------------------- /App/Services/UserService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelCapo/api_rest_2021/HEAD/App/Services/UserService.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelCapo/api_rest_2021/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelCapo/api_rest_2021/HEAD/composer.lock -------------------------------------------------------------------------------- /composer.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelCapo/api_rest_2021/HEAD/composer.phar -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelCapo/api_rest_2021/HEAD/config.php -------------------------------------------------------------------------------- /public_html/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelCapo/api_rest_2021/HEAD/public_html/.htaccess -------------------------------------------------------------------------------- /public_html/client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelCapo/api_rest_2021/HEAD/public_html/client.html -------------------------------------------------------------------------------- /public_html/client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelCapo/api_rest_2021/HEAD/public_html/client.php -------------------------------------------------------------------------------- /public_html/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelCapo/api_rest_2021/HEAD/public_html/index.php -------------------------------------------------------------------------------- /serie_login.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelCapo/api_rest_2021/HEAD/serie_login.sql -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelCapo/api_rest_2021/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelCapo/api_rest_2021/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/InstalledVersions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelCapo/api_rest_2021/HEAD/vendor/composer/InstalledVersions.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelCapo/api_rest_2021/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelCapo/api_rest_2021/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelCapo/api_rest_2021/HEAD/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelCapo/api_rest_2021/HEAD/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelCapo/api_rest_2021/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelCapo/api_rest_2021/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelCapo/api_rest_2021/HEAD/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelCapo/api_rest_2021/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/composer/installed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelCapo/api_rest_2021/HEAD/vendor/composer/installed.php --------------------------------------------------------------------------------