diff --git a/package.yaml b/package.yaml
new file mode 100644
--- /dev/null
+++ b/package.yaml
@@ -0,0 +1,84 @@
+name:                servant-auth-client
+version:             0.2.6.0
+synopsis:            servant-client/servant-auth compatibility
+description:         |
+    This package provides instances that allow generating clients from
+    <https://hackage.haskell.org/package/servant servant>
+    APIs that use
+    <https://hackage.haskell.org/package/servant-auth servant-auth's> @Auth@ combinator.
+
+    For a quick overview of the usage, see the <http://github.com/plow-technologies/servant-auth#readme README>.
+homepage:            http://github.com/plow-technologies/servant-auth#readme
+license:             BSD3
+license-file:        LICENSE
+author:              Julian K. Arni
+maintainer:          jkarni@gmail.com
+category:            Web, Servant, Authentication
+copyright:           (c) Julian K. Arni
+github:              plow-technologies/servant-auth
+tested-with:         GHC == 7.10.2, GHC == 8.0.1
+
+ghc-options: -Wall
+
+extra-source-files:
+  - package.yaml
+
+dependencies:
+  - base                >= 4.7  && < 4.10
+  - text
+  - bytestring
+  - servant-client      >= 0.7  && < 0.11
+  - servant-auth        == 0.2.*
+  - servant             >= 0.7  && < 0.11
+
+default-extensions:
+  - AutoDeriveTypeable
+  - ConstraintKinds
+  - DataKinds
+  - DefaultSignatures
+  - DeriveFoldable
+  - DeriveFunctor
+  - DeriveGeneric
+  - DeriveTraversable
+  - FlexibleContexts
+  - FlexibleInstances
+  - FunctionalDependencies
+  - GADTs
+  - KindSignatures
+  - MultiParamTypeClasses
+  - OverloadedStrings
+  - RankNTypes
+  - ScopedTypeVariables
+  - TypeFamilies
+  - TypeOperators
+
+library:
+  source-dirs:      src
+  other-modules:    []
+
+tests:
+  spec:
+    main:            Spec.hs
+    source-dirs:     test
+    dependencies:
+      - servant-auth-client
+      - hspec > 2 && < 3
+      - QuickCheck >= 2.8 && < 2.9
+      - aeson
+      - bytestring
+      - http-client
+      - http-types
+      - servant-auth-server
+      - servant-server
+      - time
+      - transformers
+      - wai
+      - warp
+      - jose
+  doctest:
+    main:            Doctest.hs
+    source-dirs:     test
+    dependencies:
+      - doctest >= 0.9 && < 0.12
+      - Glob >= 0.7 && < 0.8
+      - yaml == 0.8.*
diff --git a/servant-auth-client.cabal b/servant-auth-client.cabal
--- a/servant-auth-client.cabal
+++ b/servant-auth-client.cabal
@@ -1,9 +1,9 @@
--- This file has been generated from package.yaml by hpack version 0.14.0.
+-- This file has been generated from package.yaml by hpack version 0.15.0.
 --
 -- see: https://github.com/sol/hpack
 
 name:           servant-auth-client
-version:        0.2.1.0
+version:        0.2.6.0
 synopsis:       servant-client/servant-auth compatibility
 description:    This package provides instances that allow generating clients from
                 <https://hackage.haskell.org/package/servant servant>
@@ -23,6 +23,9 @@
 build-type:     Simple
 cabal-version:  >= 1.10
 
+extra-source-files:
+    package.yaml
+
 source-repository head
   type: git
   location: https://github.com/plow-technologies/servant-auth
@@ -36,9 +39,9 @@
       base                >= 4.7  && < 4.10
     , text
     , bytestring
-    , servant-client      >= 0.7  && < 0.10
+    , servant-client      >= 0.7  && < 0.11
     , servant-auth        == 0.2.*
-    , servant             >= 0.7  && < 0.10
+    , servant             >= 0.7  && < 0.11
   exposed-modules:
       Servant.Auth.Client
       Servant.Auth.Client.Internal
@@ -55,9 +58,9 @@
       base                >= 4.7  && < 4.10
     , text
     , bytestring
-    , servant-client      >= 0.7  && < 0.10
+    , servant-client      >= 0.7  && < 0.11
     , servant-auth        == 0.2.*
-    , servant             >= 0.7  && < 0.10
+    , servant             >= 0.7  && < 0.11
     , doctest >= 0.9 && < 0.12
     , Glob >= 0.7 && < 0.8
     , yaml == 0.8.*
@@ -77,9 +80,9 @@
       base                >= 4.7  && < 4.10
     , text
     , bytestring
-    , servant-client      >= 0.7  && < 0.10
+    , servant-client      >= 0.7  && < 0.11
     , servant-auth        == 0.2.*
-    , servant             >= 0.7  && < 0.10
+    , servant             >= 0.7  && < 0.11
     , servant-auth-client
     , hspec > 2 && < 3
     , QuickCheck >= 2.8 && < 2.9
diff --git a/test/Servant/Auth/ClientSpec.hs b/test/Servant/Auth/ClientSpec.hs
--- a/test/Servant/Auth/ClientSpec.hs
+++ b/test/Servant/Auth/ClientSpec.hs
@@ -30,6 +30,7 @@
 
 import Servant.Auth.Client
 import Servant.Auth.Server
+import Servant.Auth.Server.SetCookieOrphan ()
 
 spec :: Spec
 spec = describe "The JWT combinator" $ do
