Skip to content

Commit

Permalink
Publish Shipment Mutation
Browse files Browse the repository at this point in the history
  • Loading branch information
nkamuo committed Oct 3, 2023
1 parent 7aee0dd commit eb9f603
Show file tree
Hide file tree
Showing 69 changed files with 2,449 additions and 1,010 deletions.
2 changes: 2 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"lexik/jwt-authentication-bundle": "^2.19",
"nelmio/cors-bundle": "^2.3",
"oilstone/php-rsql-parser": "^1.0",
"oneup/flysystem-bundle": "^4.9",
"oro/doctrine-extensions": "^2.0",
"overblog/graphql-bundle": "^1.0",
"phpdocumentor/reflection-docblock": "^5.3",
Expand Down Expand Up @@ -55,6 +56,7 @@
"willdurand/geocoder-bundle": "^5.0"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^3.4",
"phpunit/phpunit": "^9.5",
"symfony/browser-kit": "6.3.*",
"symfony/css-selector": "6.3.*",
Expand Down
257 changes: 256 additions & 1 deletion composer.lock

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

2 changes: 2 additions & 0 deletions config/bundles.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,6 @@
Bazinga\GeocoderBundle\BazingaGeocoderBundle::class => ['all' => true],
League\FlysystemBundle\FlysystemBundle::class => ['all' => true],
Symfony\Bundle\MercureBundle\MercureBundle::class => ['all' => true],
Oneup\FlysystemBundle\OneupFlysystemBundle::class => ['all' => true],
Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['dev' => true, 'test' => true],
];
5 changes: 5 additions & 0 deletions config/graphql/types/Scalar.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,8 @@ UploadFile:
type: custom-scalar
config:
scalarType: '@=newObject("Overblog\\GraphQLBundle\\Upload\\Type\\GraphQLUploadType")'

FileURI:
type: custom-scalar
config:
scalarType: '@=service("App\\GraphQL\\Type\\Scalar\\FileType")'
12 changes: 12 additions & 0 deletions config/packages/oneup_flysystem.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Read the documentation: https://github.com/1up-lab/OneupFlysystemBundle
oneup_flysystem:
adapters:
default_adapter:
local:
# location: "%kernel.cache_dir%/flysystem"
location: '%kernel.project_dir%/var/storage/default'
filesystems:
default_filesystem:
mount: local
adapter: default_adapter
alias: League\Flysystem\Filesystem
2 changes: 1 addition & 1 deletion config/services.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ services:
'@App\Service\Geometery\GeometryEngineProvider',
"getGeometryEngine",
]

League\Flysystem\MountManager: '@oneup_flysystem.mount_manager'
# add more service definitions when explicit configuration is needed
# please note that last definitions always *replace* previous ones
Empty file removed migrations/.gitignore
Empty file.
Loading

0 comments on commit eb9f603

Please sign in to comment.