├── .circleci └── config.yml ├── .dockerignore ├── .editorconfig ├── .env.example ├── .eslintrc ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── Bug_report.md │ └── Feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .php_cs.dist ├── LICENSE ├── app ├── Console │ └── Kernel.php ├── Eloquents │ ├── AccessToken.php │ ├── Account.php │ ├── Category.php │ ├── CategoryName.php │ ├── CategoryStock.php │ ├── LoginSession.php │ ├── QiitaAccount.php │ └── QiitaUserName.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── AccountController.php │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ └── ResetPasswordController.php │ │ ├── CategoryController.php │ │ ├── Controller.php │ │ ├── LoginSessionController.php │ │ ├── StatusController.php │ │ └── StockController.php │ ├── Kernel.php │ └── Middleware │ │ ├── CheckForMaintenanceMode.php │ │ ├── CheckMaintenance.php │ │ ├── Cors.php │ │ ├── EncryptCookies.php │ │ ├── InfoLogging.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ ├── VerifyCsrfToken.php │ │ └── XRequestId.php ├── Infrastructure │ ├── Logger.php │ └── Repositories │ │ ├── Api │ │ ├── QiitaApiRepository.php │ │ └── Repository.php │ │ └── Eloquent │ │ ├── AccountRepository.php │ │ ├── CategoryRepository.php │ │ └── LoginSessionRepository.php ├── Models │ └── Domain │ │ ├── Account │ │ ├── AccountEntity.php │ │ ├── AccountEntityBuilder.php │ │ ├── AccountRepository.php │ │ └── AccountSpecification.php │ │ ├── Category │ │ ├── CategoryEntities.php │ │ ├── CategoryEntity.php │ │ ├── CategoryEntityBuilder.php │ │ ├── CategoryNameValue.php │ │ ├── CategoryRepository.php │ │ ├── CategorySpecification.php │ │ ├── CategoryStockEntities.php │ │ ├── CategoryStockEntity.php │ │ └── CategoryStockEntityBuilder.php │ │ ├── ErrorResponseEntity.php │ │ ├── ErrorResponseEntityBuilder.php │ │ ├── Exceptions │ │ ├── AccountCreatedException.php │ │ ├── AccountNotFoundException.php │ │ ├── BusinessLogicException.php │ │ ├── CategoryNotFoundException.php │ │ ├── CategoryRelationNotFoundException.php │ │ ├── LoginSessionExpiredException.php │ │ ├── MaintenanceException.php │ │ ├── ServiceUnavailableException.php │ │ ├── UnauthorizedException.php │ │ └── ValidationException.php │ │ ├── LoginSession │ │ ├── LoginSessionEntity.php │ │ ├── LoginSessionEntityBuilder.php │ │ ├── LoginSessionRepository.php │ │ └── LoginSessionSpecification.php │ │ ├── QiitaAccountValue.php │ │ ├── QiitaAccountValueBuilder.php │ │ ├── QiitaApiRepository.php │ │ └── Stock │ │ ├── FetchStockValues.php │ │ ├── LinkHeaderService.php │ │ ├── LinkHeaderValue.php │ │ ├── StockSpecification.php │ │ ├── StockValue.php │ │ ├── StockValueBuilder.php │ │ └── StockValues.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Services │ ├── AccountScenario.php │ ├── Authentication.php │ ├── CategoryScenario.php │ ├── LoginSessionScenario.php │ └── StockScenario.php └── User.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── createDotenv.js ├── database ├── .gitignore ├── database.sql ├── factories │ ├── AccountFactory.php │ ├── CategoryFactory.php │ └── UserFactory.php ├── migrations │ ├── 2018_10_01_174932_create_accounts_table.php │ ├── 2018_10_02_070100_create_accounts_qiita_accounts_table.php │ ├── 2018_10_02_070854_create_accounts_access_tokens_table.php │ ├── 2018_10_02_072202_create_login_sessions_table.php │ ├── 2018_11_13_002016_create_categories_table.php │ ├── 2018_11_13_005301_create_categories_names_table.php │ ├── 2018_12_10_004032_create_accounts_qiita_user_names_table.php │ └── 2018_12_25_114434_create_categories_stocks_table.php └── seeds │ └── DatabaseSeeder.php ├── deployUtils.js ├── docker-compose.yml ├── docker ├── nginx │ ├── Dockerfile │ └── config │ │ ├── default.conf.template │ │ └── nginx.conf └── php │ ├── Dockerfile │ └── config │ ├── docker-php-ext-opcache.ini │ └── php.ini ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ └── app.css ├── favicon.ico ├── index.php ├── js │ └── app.js ├── robots.txt └── web.config ├── push-ecr-local.sh ├── readme.md ├── resources ├── assets │ ├── js │ │ ├── app.js │ │ ├── bootstrap.js │ │ └── components │ │ │ └── ExampleComponent.vue │ └── sass │ │ ├── _variables.scss │ │ └── app.scss ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ ├── AbstractTestCase.php │ ├── AccountCreateTest.php │ ├── AccountDestroyTest.php │ ├── CategoryCategorizeTest.php │ ├── CategoryCreateTest.php │ ├── CategoryDestroyRelationTest.php │ ├── CategoryDestroyTest.php │ ├── CategoryIndexTest.php │ ├── CategoryUpdateTest.php │ ├── ExampleTest.php │ ├── LoginSessionCreateTest.php │ ├── LoginSessionDestroyTest.php │ ├── StatusIndexTest.php │ ├── StockIndexTest.php │ └── StockShowCategorizedTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/.github/ISSUE_TEMPLATE/Bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/.github/ISSUE_TEMPLATE/Feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/.gitignore -------------------------------------------------------------------------------- /.php_cs.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/.php_cs.dist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/LICENSE -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Eloquents/AccessToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Eloquents/AccessToken.php -------------------------------------------------------------------------------- /app/Eloquents/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Eloquents/Account.php -------------------------------------------------------------------------------- /app/Eloquents/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Eloquents/Category.php -------------------------------------------------------------------------------- /app/Eloquents/CategoryName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Eloquents/CategoryName.php -------------------------------------------------------------------------------- /app/Eloquents/CategoryStock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Eloquents/CategoryStock.php -------------------------------------------------------------------------------- /app/Eloquents/LoginSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Eloquents/LoginSession.php -------------------------------------------------------------------------------- /app/Eloquents/QiitaAccount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Eloquents/QiitaAccount.php -------------------------------------------------------------------------------- /app/Eloquents/QiitaUserName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Eloquents/QiitaUserName.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/AccountController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Http/Controllers/AccountController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/CategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Http/Controllers/CategoryController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/LoginSessionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Http/Controllers/LoginSessionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/StatusController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Http/Controllers/StatusController.php -------------------------------------------------------------------------------- /app/Http/Controllers/StockController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Http/Controllers/StockController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Http/Middleware/CheckForMaintenanceMode.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Http/Middleware/CheckMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/Cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Http/Middleware/Cors.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/InfoLogging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Http/Middleware/InfoLogging.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Middleware/XRequestId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Http/Middleware/XRequestId.php -------------------------------------------------------------------------------- /app/Infrastructure/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Infrastructure/Logger.php -------------------------------------------------------------------------------- /app/Infrastructure/Repositories/Api/QiitaApiRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Infrastructure/Repositories/Api/QiitaApiRepository.php -------------------------------------------------------------------------------- /app/Infrastructure/Repositories/Api/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Infrastructure/Repositories/Api/Repository.php -------------------------------------------------------------------------------- /app/Infrastructure/Repositories/Eloquent/AccountRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Infrastructure/Repositories/Eloquent/AccountRepository.php -------------------------------------------------------------------------------- /app/Infrastructure/Repositories/Eloquent/CategoryRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Infrastructure/Repositories/Eloquent/CategoryRepository.php -------------------------------------------------------------------------------- /app/Infrastructure/Repositories/Eloquent/LoginSessionRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Infrastructure/Repositories/Eloquent/LoginSessionRepository.php -------------------------------------------------------------------------------- /app/Models/Domain/Account/AccountEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/Account/AccountEntity.php -------------------------------------------------------------------------------- /app/Models/Domain/Account/AccountEntityBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/Account/AccountEntityBuilder.php -------------------------------------------------------------------------------- /app/Models/Domain/Account/AccountRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/Account/AccountRepository.php -------------------------------------------------------------------------------- /app/Models/Domain/Account/AccountSpecification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/Account/AccountSpecification.php -------------------------------------------------------------------------------- /app/Models/Domain/Category/CategoryEntities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/Category/CategoryEntities.php -------------------------------------------------------------------------------- /app/Models/Domain/Category/CategoryEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/Category/CategoryEntity.php -------------------------------------------------------------------------------- /app/Models/Domain/Category/CategoryEntityBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/Category/CategoryEntityBuilder.php -------------------------------------------------------------------------------- /app/Models/Domain/Category/CategoryNameValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/Category/CategoryNameValue.php -------------------------------------------------------------------------------- /app/Models/Domain/Category/CategoryRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/Category/CategoryRepository.php -------------------------------------------------------------------------------- /app/Models/Domain/Category/CategorySpecification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/Category/CategorySpecification.php -------------------------------------------------------------------------------- /app/Models/Domain/Category/CategoryStockEntities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/Category/CategoryStockEntities.php -------------------------------------------------------------------------------- /app/Models/Domain/Category/CategoryStockEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/Category/CategoryStockEntity.php -------------------------------------------------------------------------------- /app/Models/Domain/Category/CategoryStockEntityBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/Category/CategoryStockEntityBuilder.php -------------------------------------------------------------------------------- /app/Models/Domain/ErrorResponseEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/ErrorResponseEntity.php -------------------------------------------------------------------------------- /app/Models/Domain/ErrorResponseEntityBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/ErrorResponseEntityBuilder.php -------------------------------------------------------------------------------- /app/Models/Domain/Exceptions/AccountCreatedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/Exceptions/AccountCreatedException.php -------------------------------------------------------------------------------- /app/Models/Domain/Exceptions/AccountNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/Exceptions/AccountNotFoundException.php -------------------------------------------------------------------------------- /app/Models/Domain/Exceptions/BusinessLogicException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/Exceptions/BusinessLogicException.php -------------------------------------------------------------------------------- /app/Models/Domain/Exceptions/CategoryNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/Exceptions/CategoryNotFoundException.php -------------------------------------------------------------------------------- /app/Models/Domain/Exceptions/CategoryRelationNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/Exceptions/CategoryRelationNotFoundException.php -------------------------------------------------------------------------------- /app/Models/Domain/Exceptions/LoginSessionExpiredException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/Exceptions/LoginSessionExpiredException.php -------------------------------------------------------------------------------- /app/Models/Domain/Exceptions/MaintenanceException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/Exceptions/MaintenanceException.php -------------------------------------------------------------------------------- /app/Models/Domain/Exceptions/ServiceUnavailableException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/Exceptions/ServiceUnavailableException.php -------------------------------------------------------------------------------- /app/Models/Domain/Exceptions/UnauthorizedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/Exceptions/UnauthorizedException.php -------------------------------------------------------------------------------- /app/Models/Domain/Exceptions/ValidationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/Exceptions/ValidationException.php -------------------------------------------------------------------------------- /app/Models/Domain/LoginSession/LoginSessionEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/LoginSession/LoginSessionEntity.php -------------------------------------------------------------------------------- /app/Models/Domain/LoginSession/LoginSessionEntityBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/LoginSession/LoginSessionEntityBuilder.php -------------------------------------------------------------------------------- /app/Models/Domain/LoginSession/LoginSessionRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/LoginSession/LoginSessionRepository.php -------------------------------------------------------------------------------- /app/Models/Domain/LoginSession/LoginSessionSpecification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/LoginSession/LoginSessionSpecification.php -------------------------------------------------------------------------------- /app/Models/Domain/QiitaAccountValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/QiitaAccountValue.php -------------------------------------------------------------------------------- /app/Models/Domain/QiitaAccountValueBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/QiitaAccountValueBuilder.php -------------------------------------------------------------------------------- /app/Models/Domain/QiitaApiRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/QiitaApiRepository.php -------------------------------------------------------------------------------- /app/Models/Domain/Stock/FetchStockValues.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/Stock/FetchStockValues.php -------------------------------------------------------------------------------- /app/Models/Domain/Stock/LinkHeaderService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/Stock/LinkHeaderService.php -------------------------------------------------------------------------------- /app/Models/Domain/Stock/LinkHeaderValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/Stock/LinkHeaderValue.php -------------------------------------------------------------------------------- /app/Models/Domain/Stock/StockSpecification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/Stock/StockSpecification.php -------------------------------------------------------------------------------- /app/Models/Domain/Stock/StockValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/Stock/StockValue.php -------------------------------------------------------------------------------- /app/Models/Domain/Stock/StockValueBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/Stock/StockValueBuilder.php -------------------------------------------------------------------------------- /app/Models/Domain/Stock/StockValues.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Models/Domain/Stock/StockValues.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Services/AccountScenario.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Services/AccountScenario.php -------------------------------------------------------------------------------- /app/Services/Authentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Services/Authentication.php -------------------------------------------------------------------------------- /app/Services/CategoryScenario.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Services/CategoryScenario.php -------------------------------------------------------------------------------- /app/Services/LoginSessionScenario.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Services/LoginSessionScenario.php -------------------------------------------------------------------------------- /app/Services/StockScenario.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/Services/StockScenario.php -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/app/User.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/config/view.php -------------------------------------------------------------------------------- /createDotenv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/createDotenv.js -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/database/database.sql -------------------------------------------------------------------------------- /database/factories/AccountFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/database/factories/AccountFactory.php -------------------------------------------------------------------------------- /database/factories/CategoryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/database/factories/CategoryFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2018_10_01_174932_create_accounts_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/database/migrations/2018_10_01_174932_create_accounts_table.php -------------------------------------------------------------------------------- /database/migrations/2018_10_02_070100_create_accounts_qiita_accounts_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/database/migrations/2018_10_02_070100_create_accounts_qiita_accounts_table.php -------------------------------------------------------------------------------- /database/migrations/2018_10_02_070854_create_accounts_access_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/database/migrations/2018_10_02_070854_create_accounts_access_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2018_10_02_072202_create_login_sessions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/database/migrations/2018_10_02_072202_create_login_sessions_table.php -------------------------------------------------------------------------------- /database/migrations/2018_11_13_002016_create_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/database/migrations/2018_11_13_002016_create_categories_table.php -------------------------------------------------------------------------------- /database/migrations/2018_11_13_005301_create_categories_names_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/database/migrations/2018_11_13_005301_create_categories_names_table.php -------------------------------------------------------------------------------- /database/migrations/2018_12_10_004032_create_accounts_qiita_user_names_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/database/migrations/2018_12_10_004032_create_accounts_qiita_user_names_table.php -------------------------------------------------------------------------------- /database/migrations/2018_12_25_114434_create_categories_stocks_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/database/migrations/2018_12_25_114434_create_categories_stocks_table.php -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /deployUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/deployUtils.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/docker/nginx/Dockerfile -------------------------------------------------------------------------------- /docker/nginx/config/default.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/docker/nginx/config/default.conf.template -------------------------------------------------------------------------------- /docker/nginx/config/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/docker/nginx/config/nginx.conf -------------------------------------------------------------------------------- /docker/php/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/docker/php/Dockerfile -------------------------------------------------------------------------------- /docker/php/config/docker-php-ext-opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/docker/php/config/docker-php-ext-opcache.ini -------------------------------------------------------------------------------- /docker/php/config/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/docker/php/config/php.ini -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/public/web.config -------------------------------------------------------------------------------- /push-ecr-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/push-ecr-local.sh -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/readme.md -------------------------------------------------------------------------------- /resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/resources/assets/js/app.js -------------------------------------------------------------------------------- /resources/assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/resources/assets/js/bootstrap.js -------------------------------------------------------------------------------- /resources/assets/js/components/ExampleComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/resources/assets/js/components/ExampleComponent.vue -------------------------------------------------------------------------------- /resources/assets/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/resources/assets/sass/_variables.scss -------------------------------------------------------------------------------- /resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/resources/assets/sass/app.scss -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/AbstractTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/tests/Feature/AbstractTestCase.php -------------------------------------------------------------------------------- /tests/Feature/AccountCreateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/tests/Feature/AccountCreateTest.php -------------------------------------------------------------------------------- /tests/Feature/AccountDestroyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/tests/Feature/AccountDestroyTest.php -------------------------------------------------------------------------------- /tests/Feature/CategoryCategorizeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/tests/Feature/CategoryCategorizeTest.php -------------------------------------------------------------------------------- /tests/Feature/CategoryCreateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/tests/Feature/CategoryCreateTest.php -------------------------------------------------------------------------------- /tests/Feature/CategoryDestroyRelationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/tests/Feature/CategoryDestroyRelationTest.php -------------------------------------------------------------------------------- /tests/Feature/CategoryDestroyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/tests/Feature/CategoryDestroyTest.php -------------------------------------------------------------------------------- /tests/Feature/CategoryIndexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/tests/Feature/CategoryIndexTest.php -------------------------------------------------------------------------------- /tests/Feature/CategoryUpdateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/tests/Feature/CategoryUpdateTest.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/Feature/LoginSessionCreateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/tests/Feature/LoginSessionCreateTest.php -------------------------------------------------------------------------------- /tests/Feature/LoginSessionDestroyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/tests/Feature/LoginSessionDestroyTest.php -------------------------------------------------------------------------------- /tests/Feature/StatusIndexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/tests/Feature/StatusIndexTest.php -------------------------------------------------------------------------------- /tests/Feature/StockIndexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/tests/Feature/StockIndexTest.php -------------------------------------------------------------------------------- /tests/Feature/StockShowCategorizedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/tests/Feature/StockShowCategorizedTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekochans/qiita-stocker-backend/HEAD/yarn.lock --------------------------------------------------------------------------------