├── .circleci └── config.yml ├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── Makefile ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ └── Controller.php │ ├── Kernel.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Providers │ ├── AdapterServiceProvider.php │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.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 ├── database ├── .gitignore ├── factories │ ├── CustomerFactory.php │ ├── CustomerPointFactory.php │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2018_08_02_013212_create_customers.php │ └── 2018_08_02_013246_create_customer_points.php └── seeds │ └── DatabaseSeeder.php ├── docker-compose.yml ├── docker ├── nginx │ ├── conf.d │ │ ├── default.conf │ │ ├── php-upstream.conf │ │ └── status.conf │ └── nginx.conf └── php-fpm │ ├── Dockerfile │ ├── php-fpm.conf │ └── php.ini ├── package.json ├── packages └── Acme │ └── Point │ ├── Application │ ├── AddPoint │ │ ├── Actions │ │ │ ├── AddPointRequest.php │ │ │ └── PutAddPointAction.php │ │ └── Adapters │ │ │ └── AppAddPointAdapter.php │ ├── AddPointDomain │ │ ├── Actions │ │ │ ├── AddPointRequest.php │ │ │ └── PutAddPointAction.php │ │ └── Adapters │ │ │ └── AppAddPointAdapter.php │ └── Eloquents │ │ ├── EloquentCustomer.php │ │ └── EloquentCustomerPoint.php │ ├── Core │ ├── Domain │ │ ├── Exceptions │ │ │ └── DomainRuleException.php │ │ └── Models │ │ │ ├── AddPoint.php │ │ │ ├── CustomerId.php │ │ │ ├── NumberTrait.php │ │ │ └── Point.php │ └── UseCases │ │ ├── AddPoint │ │ ├── AddPointUseCase.php │ │ ├── AddPointUseCaseCommand.php │ │ └── AddPointUseCaseQuery.php │ │ └── AddPointDomain │ │ ├── AddPointUseCase.php │ │ ├── AddPointUseCaseCommand.php │ │ └── AddPointUseCaseQuery.php │ └── Test │ └── Core │ └── UseCases │ ├── AddPoint │ └── AddPointUseCaseTest.php │ └── AddPointDomain │ └── AddPointUseCaseTest.php ├── phpunit.xml ├── public ├── .htaccess ├── css │ └── app.css ├── favicon.ico ├── index.php ├── js │ └── app.js ├── robots.txt ├── svg │ ├── 403.svg │ ├── 404.svg │ ├── 500.svg │ └── 503.svg └── web.config ├── readme.md ├── resources ├── js │ ├── app.js │ ├── bootstrap.js │ └── components │ │ └── ExampleComponent.vue ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php ├── sass │ ├── _variables.scss │ └── app.scss └── views │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── ruleset.xml ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ ├── AddPointDomainTest.php │ └── AddPointTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── webpack.mix.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/Makefile -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/app/Http/Controllers/Auth/VerificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/app/Http/Middleware/CheckForMaintenanceMode.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Providers/AdapterServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/app/Providers/AdapterServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/app/User.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/factories/CustomerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/database/factories/CustomerFactory.php -------------------------------------------------------------------------------- /database/factories/CustomerPointFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/database/factories/CustomerPointFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2018_08_02_013212_create_customers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/database/migrations/2018_08_02_013212_create_customers.php -------------------------------------------------------------------------------- /database/migrations/2018_08_02_013246_create_customer_points.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/database/migrations/2018_08_02_013246_create_customer_points.php -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/nginx/conf.d/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/docker/nginx/conf.d/default.conf -------------------------------------------------------------------------------- /docker/nginx/conf.d/php-upstream.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/docker/nginx/conf.d/php-upstream.conf -------------------------------------------------------------------------------- /docker/nginx/conf.d/status.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/docker/nginx/conf.d/status.conf -------------------------------------------------------------------------------- /docker/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/docker/nginx/nginx.conf -------------------------------------------------------------------------------- /docker/php-fpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/docker/php-fpm/Dockerfile -------------------------------------------------------------------------------- /docker/php-fpm/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/docker/php-fpm/php-fpm.conf -------------------------------------------------------------------------------- /docker/php-fpm/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/docker/php-fpm/php.ini -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/package.json -------------------------------------------------------------------------------- /packages/Acme/Point/Application/AddPoint/Actions/AddPointRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/packages/Acme/Point/Application/AddPoint/Actions/AddPointRequest.php -------------------------------------------------------------------------------- /packages/Acme/Point/Application/AddPoint/Actions/PutAddPointAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/packages/Acme/Point/Application/AddPoint/Actions/PutAddPointAction.php -------------------------------------------------------------------------------- /packages/Acme/Point/Application/AddPoint/Adapters/AppAddPointAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/packages/Acme/Point/Application/AddPoint/Adapters/AppAddPointAdapter.php -------------------------------------------------------------------------------- /packages/Acme/Point/Application/AddPointDomain/Actions/AddPointRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/packages/Acme/Point/Application/AddPointDomain/Actions/AddPointRequest.php -------------------------------------------------------------------------------- /packages/Acme/Point/Application/AddPointDomain/Actions/PutAddPointAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/packages/Acme/Point/Application/AddPointDomain/Actions/PutAddPointAction.php -------------------------------------------------------------------------------- /packages/Acme/Point/Application/AddPointDomain/Adapters/AppAddPointAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/packages/Acme/Point/Application/AddPointDomain/Adapters/AppAddPointAdapter.php -------------------------------------------------------------------------------- /packages/Acme/Point/Application/Eloquents/EloquentCustomer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/packages/Acme/Point/Application/Eloquents/EloquentCustomer.php -------------------------------------------------------------------------------- /packages/Acme/Point/Application/Eloquents/EloquentCustomerPoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/packages/Acme/Point/Application/Eloquents/EloquentCustomerPoint.php -------------------------------------------------------------------------------- /packages/Acme/Point/Core/Domain/Exceptions/DomainRuleException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/packages/Acme/Point/Core/Domain/Exceptions/DomainRuleException.php -------------------------------------------------------------------------------- /packages/Acme/Point/Core/Domain/Models/AddPoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/packages/Acme/Point/Core/Domain/Models/AddPoint.php -------------------------------------------------------------------------------- /packages/Acme/Point/Core/Domain/Models/CustomerId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/packages/Acme/Point/Core/Domain/Models/CustomerId.php -------------------------------------------------------------------------------- /packages/Acme/Point/Core/Domain/Models/NumberTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/packages/Acme/Point/Core/Domain/Models/NumberTrait.php -------------------------------------------------------------------------------- /packages/Acme/Point/Core/Domain/Models/Point.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/packages/Acme/Point/Core/Domain/Models/Point.php -------------------------------------------------------------------------------- /packages/Acme/Point/Core/UseCases/AddPoint/AddPointUseCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/packages/Acme/Point/Core/UseCases/AddPoint/AddPointUseCase.php -------------------------------------------------------------------------------- /packages/Acme/Point/Core/UseCases/AddPoint/AddPointUseCaseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/packages/Acme/Point/Core/UseCases/AddPoint/AddPointUseCaseCommand.php -------------------------------------------------------------------------------- /packages/Acme/Point/Core/UseCases/AddPoint/AddPointUseCaseQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/packages/Acme/Point/Core/UseCases/AddPoint/AddPointUseCaseQuery.php -------------------------------------------------------------------------------- /packages/Acme/Point/Core/UseCases/AddPointDomain/AddPointUseCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/packages/Acme/Point/Core/UseCases/AddPointDomain/AddPointUseCase.php -------------------------------------------------------------------------------- /packages/Acme/Point/Core/UseCases/AddPointDomain/AddPointUseCaseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/packages/Acme/Point/Core/UseCases/AddPointDomain/AddPointUseCaseCommand.php -------------------------------------------------------------------------------- /packages/Acme/Point/Core/UseCases/AddPointDomain/AddPointUseCaseQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/packages/Acme/Point/Core/UseCases/AddPointDomain/AddPointUseCaseQuery.php -------------------------------------------------------------------------------- /packages/Acme/Point/Test/Core/UseCases/AddPoint/AddPointUseCaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/packages/Acme/Point/Test/Core/UseCases/AddPoint/AddPointUseCaseTest.php -------------------------------------------------------------------------------- /packages/Acme/Point/Test/Core/UseCases/AddPointDomain/AddPointUseCaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/packages/Acme/Point/Test/Core/UseCases/AddPointDomain/AddPointUseCaseTest.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/svg/403.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/public/svg/403.svg -------------------------------------------------------------------------------- /public/svg/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/public/svg/404.svg -------------------------------------------------------------------------------- /public/svg/500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/public/svg/500.svg -------------------------------------------------------------------------------- /public/svg/503.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/public/svg/503.svg -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/public/web.config -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/readme.md -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/js/components/ExampleComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/resources/js/components/ExampleComponent.vue -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/resources/sass/_variables.scss -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/resources/sass/app.scss -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/routes/web.php -------------------------------------------------------------------------------- /ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/ruleset.xml -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/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/shin1x1/phpcon2018-independent-core-layer/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.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/shin1x1/phpcon2018-independent-core-layer/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/AddPointDomainTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/tests/Feature/AddPointDomainTest.php -------------------------------------------------------------------------------- /tests/Feature/AddPointTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/tests/Feature/AddPointTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shin1x1/phpcon2018-independent-core-layer/HEAD/webpack.mix.js --------------------------------------------------------------------------------