Skip to content

Commit

Permalink
Implemented Admin GQL resolvers
Browse files Browse the repository at this point in the history
  • Loading branch information
nkamuo committed Sep 19, 2023
1 parent 4e9a79f commit 6a4948a
Show file tree
Hide file tree
Showing 44 changed files with 1,889 additions and 57 deletions.
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"doctrine/doctrine-migrations-bundle": "^3.2",
"doctrine/orm": "^2.16",
"emcconville/google-map-polyline-encoding-tool": "^1.3",
"league/flysystem-bundle": "^3.2",
"lexik/jwt-authentication-bundle": "^2.19",
"nelmio/cors-bundle": "^2.3",
"oilstone/php-rsql-parser": "^1.0",
Expand Down
268 changes: 267 additions & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions config/bundles.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@
Lexik\Bundle\JWTAuthenticationBundle\LexikJWTAuthenticationBundle::class => ['all' => true],
Nelmio\CorsBundle\NelmioCorsBundle::class => ['all' => true],
Bazinga\GeocoderBundle\BazingaGeocoderBundle::class => ['all' => true],
League\FlysystemBundle\FlysystemBundle::class => ['all' => true],
];
7 changes: 7 additions & 0 deletions config/packages/flysystem.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Read the documentation at https://github.com/thephpleague/flysystem-bundle/blob/master/docs/1-getting-started.md
flysystem:
storages:
default.storage:
adapter: 'local'
options:
directory: '%kernel.project_dir%/var/storage/default'
Loading

0 comments on commit 6a4948a

Please sign in to comment.