feat (api) : initialize api project.
parents
Showing
.editorconfig
0 → 100644
.gitattributes
0 → 100644
.gitignore
0 → 100644
.graphqlconfig
0 → 100644
.styleci.yml
0 → 100644
README.md
0 → 100644
_lighthouse_ide_helper.php
0 → 100644
app/Console/Kernel.php
0 → 100644
app/Exceptions/Handler.php
0 → 100644
app/GraphQL/Mutations/Login.php
0 → 100644
app/Http/Controllers/Controller.php
0 → 100644
app/Http/Kernel.php
0 → 100644
app/Http/Middleware/Authenticate.php
0 → 100644
app/Http/Middleware/EncryptCookies.php
0 → 100644
app/Http/Middleware/TrimStrings.php
0 → 100644
app/Http/Middleware/TrustHosts.php
0 → 100644
app/Http/Middleware/TrustProxies.php
0 → 100644
app/Http/Middleware/VerifyCsrfToken.php
0 → 100644
app/Models/AnalysisAttributes.php
0 → 100644
app/Models/BasketSize.php
0 → 100644
app/Models/BasketSizeGroup.php
0 → 100644
app/Models/Cannibalization.php
0 → 100644
app/Models/CannibalizationAnalysis.php
0 → 100644
app/Models/CannibalizationPolygon.php
0 → 100644
app/Models/CannibalizationPolygonType.php
0 → 100644
app/Models/CannibalizationSites.php
0 → 100644
app/Models/ConfigurationSites.php
0 → 100644
app/Models/CustomCategory.php
0 → 100644
app/Models/CustomLayer.php
0 → 100644
app/Models/DefaultAnalysisField.php
0 → 100644
app/Models/Group.php
0 → 100644
app/Models/GroupCustomLayer.php
0 → 100644
app/Models/GroupLayers.php
0 → 100644
app/Models/GroupPlan.php
0 → 100644
app/Models/GroupService.php
0 → 100644
app/Models/GroupTrial.php
0 → 100644
app/Models/GroupType.php
0 → 100644
app/Models/LayerCategory.php
0 → 100644
app/Models/LayerDetail.php
0 → 100644
app/Models/LayerFilter.php
0 → 100644
app/Models/LayerFilterDetail.php
0 → 100644
app/Models/LayerMapping.php
0 → 100644
app/Models/LayerType.php
0 → 100644
app/Models/Layers.php
0 → 100644
app/Models/PlanDescriptions.php
0 → 100644
app/Models/Plans.php
0 → 100644
app/Models/Relations.php
0 → 100644
app/Models/Services.php
0 → 100644
app/Models/SiteAnalysis.php
0 → 100644
app/Models/SiteType.php
0 → 100644
app/Models/Sites.php
0 → 100644
app/Models/TypeArea.php
0 → 100644
app/Models/UseOfReports.php
0 → 100644
app/Models/UseOfReportsDetail.php
0 → 100644
app/Models/User.php
0 → 100644
app/Models/UserLogData.php
0 → 100644
app/Models/UserLogPassword.php
0 → 100644
app/Models/UserRoles.php
0 → 100644
app/Models/UserTokens.php
0 → 100644
app/Observers/CreatedFieldsObserver.php
0 → 100644
app/Providers/AppServiceProvider.php
0 → 100644
app/Providers/AuthServiceProvider.php
0 → 100644
app/Providers/BroadcastServiceProvider.php
0 → 100644
app/Providers/EventServiceProvider.php
0 → 100644
app/Providers/RouteServiceProvider.php
0 → 100644
app/Traits/ActionsModels.php
0 → 100644
app/Traits/CreatedFields.php
0 → 100644
app/Traits/ScopeModels.php
0 → 100644
artisan
0 → 100644
bootstrap/app.php
0 → 100644
bootstrap/cache/.gitignore
0 → 100644
composer.json
0 → 100644
| { | |||
| "name": "laravel/laravel", | |||
| "type": "project", | |||
| "description": "The Laravel Framework.", | |||
| "keywords": ["framework", "laravel"], | |||
| "license": "MIT", | |||
| "require": { | |||
| "php": "8.1.*", | |||
| "guzzlehttp/guzzle": "^7.2", | |||
| "laravel/framework": "^9.2", | |||
| "laravel/sanctum": "^2.14", | |||
| "laravel/tinker": "^2.7", | |||
| "nuwave/lighthouse": "^5.42" | |||
| }, | |||
| "require-dev": { | |||
| "fakerphp/faker": "^1.9.1", | |||
| "laravel/sail": "^1.0.1", | |||
| "mockery/mockery": "^1.4.4", | |||
| "nunomaduro/collision": "^6.1", | |||
| "phpunit/phpunit": "^9.5.10", | |||
| "spatie/laravel-ignition": "^1.0" | |||
| }, | |||
| "autoload": { | |||
| "psr-4": { | |||
| "App\\": "app/", | |||
| "Database\\Factories\\": "database/factories/", | |||
| "Database\\Seeders\\": "database/seeders/" | |||
| } | |||
| }, | |||
| "autoload-dev": { | |||
| "psr-4": { | |||
| "Tests\\": "tests/" | |||
| } | |||
| }, | |||
| "scripts": { | |||
| "post-autoload-dump": [ | |||
| "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", | |||
| "@php artisan package:discover --ansi" | |||
| ], | |||
| "post-update-cmd": [ | |||
| "@php artisan vendor:publish --tag=laravel-assets --ansi --force" | |||
| ], | |||
| "post-root-package-install": [ | |||
| "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" | |||
| ], | |||
| "post-create-project-cmd": [ | |||
| "@php artisan key:generate --ansi" | |||
| ] | |||
| }, | |||
| "extra": { | |||
| "laravel": { | |||
| "dont-discover": [] | |||
| } | |||
| }, | |||
| "config": { | |||
| "optimize-autoloader": true, | |||
| "preferred-install": "dist", | |||
| "sort-packages": true | |||
| }, | |||
| "minimum-stability": "dev", | |||
| "prefer-stable": true | |||
| } |
composer.lock
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
composer.phar
0 → 100644
File added
config/app.php
0 → 100644
config/auth.php
0 → 100644
This diff is collapsed.
Click to expand it.
config/broadcasting.php
0 → 100644
This diff is collapsed.
Click to expand it.
config/cache.php
0 → 100644
This diff is collapsed.
Click to expand it.
config/cors.php
0 → 100644
This diff is collapsed.
Click to expand it.
config/database.php
0 → 100644
This diff is collapsed.
Click to expand it.
config/filesystems.php
0 → 100644
This diff is collapsed.
Click to expand it.
config/hashing.php
0 → 100644
This diff is collapsed.
Click to expand it.
config/lighthouse.php
0 → 100644
This diff is collapsed.
Click to expand it.
config/logging.php
0 → 100644
This diff is collapsed.
Click to expand it.
config/mail.php
0 → 100644
This diff is collapsed.
Click to expand it.
config/queue.php
0 → 100644
This diff is collapsed.
Click to expand it.
config/sanctum.php
0 → 100644
This diff is collapsed.
Click to expand it.
config/services.php
0 → 100644
This diff is collapsed.
Click to expand it.
config/session.php
0 → 100644
This diff is collapsed.
Click to expand it.
config/view.php
0 → 100644
This diff is collapsed.
Click to expand it.
database/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
database/factories/UserFactory.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
database/seeders/DatabaseSeeder.php
0 → 100644
This diff is collapsed.
Click to expand it.
graphql/auth.graphql
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
graphql/layer-management/layers.graphql
0 → 100644
This diff is collapsed.
Click to expand it.
graphql/logs/user-log-data.graphql
0 → 100644
This diff is collapsed.
Click to expand it.
graphql/logs/user-log-password.graphql
0 → 100644
This diff is collapsed.
Click to expand it.
graphql/master-data/group-type.graphql
0 → 100644
This diff is collapsed.
Click to expand it.
graphql/master-data/layer-type.graphql
0 → 100644
This diff is collapsed.
Click to expand it.
graphql/master-data/services.graphql
0 → 100644
This diff is collapsed.
Click to expand it.
graphql/master-data/type-area.graphql
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
graphql/reports/use-of-reports.graphql
0 → 100644
This diff is collapsed.
Click to expand it.
graphql/schema.graphql
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
graphql/sites-management/basket-size.graphql
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
graphql/sites-management/site-type.graphql
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
graphql/sites-management/sites.graphql
0 → 100644
This diff is collapsed.
Click to expand it.
graphql/subcriptions/group-layer.graphql
0 → 100644
This diff is collapsed.
Click to expand it.
graphql/subcriptions/group-plan.graphql
0 → 100644
This diff is collapsed.
Click to expand it.
graphql/subcriptions/group-service.graphql
0 → 100644
This diff is collapsed.
Click to expand it.
graphql/subcriptions/group-trial.graphql
0 → 100644
This diff is collapsed.
Click to expand it.
graphql/subcriptions/group.graphql
0 → 100644
This diff is collapsed.
Click to expand it.
graphql/subcriptions/plans.graphql
0 → 100644
This diff is collapsed.
Click to expand it.
graphql/subcriptions/user-roles.graphql
0 → 100644
This diff is collapsed.
Click to expand it.
graphql/subcriptions/user-tokens.graphql
0 → 100644
This diff is collapsed.
Click to expand it.
graphql/subcriptions/user.graphql
0 → 100644
This diff is collapsed.
Click to expand it.
lang/en.json
0 → 100644
This diff is collapsed.
Click to expand it.
lang/en/auth.php
0 → 100644
This diff is collapsed.
Click to expand it.
lang/en/pagination.php
0 → 100644
This diff is collapsed.
Click to expand it.
lang/en/passwords.php
0 → 100644
This diff is collapsed.
Click to expand it.
lang/en/validation.php
0 → 100644
This diff is collapsed.
Click to expand it.
package.json
0 → 100644
This diff is collapsed.
Click to expand it.
phpunit.xml
0 → 100644
This diff is collapsed.
Click to expand it.
programmatic-types.graphql
0 → 100644
This diff is collapsed.
Click to expand it.
public/.htaccess
0 → 100644
This diff is collapsed.
Click to expand it.
public/favicon.ico
0 → 100644
This diff is collapsed.
Click to expand it.
public/index.php
0 → 100644
This diff is collapsed.
Click to expand it.
public/robots.txt
0 → 100644
This diff is collapsed.
Click to expand it.
resources/css/app.css
0 → 100644
This diff is collapsed.
Click to expand it.
resources/js/app.js
0 → 100644
This diff is collapsed.
Click to expand it.
resources/js/bootstrap.js
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/welcome.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
routes/api.php
0 → 100644
This diff is collapsed.
Click to expand it.
routes/channels.php
0 → 100644
This diff is collapsed.
Click to expand it.
routes/console.php
0 → 100644
This diff is collapsed.
Click to expand it.
routes/web.php
0 → 100644
This diff is collapsed.
Click to expand it.
schema-directives.graphql
0 → 100644
This diff is collapsed.
Click to expand it.
storage/app/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/app/public/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/framework/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/framework/cache/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/framework/cache/data/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/framework/sessions/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/framework/testing/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/framework/views/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/logs/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
tests/CreatesApplication.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/Feature/ExampleTest.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/TestCase.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/Unit/ExampleTest.php
0 → 100644
This diff is collapsed.
Click to expand it.
webpack.mix.js
0 → 100644
This diff is collapsed.
Click to expand it.
Please
register
or
sign in
to comment