├── .dockerignore ├── .env.dist ├── .gitignore ├── .test.env.dist ├── .travis.yml ├── Dockerfile ├── LICENSE ├── README.md ├── bin ├── build-docker-image ├── console └── phpunit ├── composer.json ├── composer.lock ├── config ├── bundles.php ├── packages │ ├── dev │ │ ├── routing.yaml │ │ └── security_checker.yaml │ ├── framework.yaml │ ├── nelmio_cors.yaml │ ├── payum.yaml │ ├── routing.yaml │ ├── test │ │ └── framework.yaml │ ├── translation.yaml │ ├── twig.yaml │ └── yadm.yaml ├── routes.yaml ├── routes │ └── dev │ │ └── twig.yaml ├── services.yaml └── services_test.yaml ├── docker-compose.yml.dist ├── phpunit.xml.dist ├── public ├── demo.html ├── index.php └── payum.js ├── src ├── Action │ ├── AuthorizePaymentAction.php │ ├── CapturePaymentAction.php │ ├── ExecuteSameRequestWithPaymentDetailsAction.php │ ├── ObtainMissingDetailsAction.php │ └── ObtainMissingDetailsForBe2BillAction.php ├── Api │ ├── Controller │ │ ├── GatewayController.php │ │ ├── PaymentController.php │ │ ├── RootController.php │ │ └── TokenController.php │ └── View │ │ ├── GatewayConfigToJsonConverter.php │ │ ├── PaymentToJsonConverter.php │ │ └── TokenToJsonConverter.php ├── Controller │ ├── AuthorizeController.php │ ├── CaptureController.php │ ├── ForwardExtensionTrait.php │ └── GatewayChooserInterface.php ├── Converter │ └── ReplyToJsonResponseConverter.php ├── EventListener │ ├── Exception │ │ └── JsonOutputExceptionListener.php │ ├── Request │ │ └── GatewayChooserListener.php │ └── Response │ │ ├── ReplyToHttpResponseListener.php │ │ └── VndHeaderListener.php ├── Extension │ └── UpdatePaymentStatusExtension.php ├── Factory │ └── GatewayChoicesCallbackFactory.php ├── Form │ ├── EventListener │ │ └── PatchSubscriber.php │ ├── Extension │ │ └── CreditCardExtension.php │ └── Type │ │ └── ChooseGatewayType.php ├── InvalidJsonException.php ├── JsonDecode.php ├── Kernel.php ├── Model │ ├── GatewayConfig.php │ ├── Identity.php │ ├── Payer.php │ ├── Payment.php │ └── PaymentToken.php ├── Request │ └── ObtainMissingDetailsRequest.php ├── Schema │ ├── Controller │ │ ├── GatewaySchemaController.php │ │ ├── PaymentSchemaController.php │ │ └── TokenSchemaController.php │ ├── GatewayFormDefinitionBuilder.php │ ├── GatewaySchemaBuilder.php │ ├── PaymentFormDefinitionBuilder.php │ ├── PaymentSchemaBuilder.php │ └── TokenSchemaBuilder.php ├── Storage │ ├── GatewayConfigStorage.php │ ├── PaymentStorage.php │ ├── PaymentTokenStorage.php │ ├── YadmStorage.php │ └── YadmStorageFactory.php ├── Util │ ├── StringUtil.php │ └── UUID.php └── Yadm │ └── Hydrator │ ├── GatewayConfigHydrator.php │ ├── PaymentHydrator.php │ └── PaymentTokenHydrator.php ├── symfony.lock ├── templates ├── base.html.twig ├── chooseGateway.html.twig ├── obtainCreditCardWithJessepollakCard.html.twig └── obtainMissingDetails.html.twig ├── tests ├── Test │ ├── Client.php │ ├── ResponseHelper.php │ └── WebTestCase.php ├── Tests │ ├── Functional │ │ ├── Api │ │ │ └── Controller │ │ │ │ ├── GatewayControllerTest.php │ │ │ │ ├── PaymentControllerTest.php │ │ │ │ └── TokenControllerTest.php │ │ ├── ApplicationTest.php │ │ ├── Controller │ │ │ ├── AuthorizeControllerTest.php │ │ │ └── CaptureControllerTest.php │ │ ├── Model │ │ │ ├── GatewayConfigTest.php │ │ │ ├── PaymentTest.php │ │ │ └── PaymentTokenTest.php │ │ └── Schema │ │ │ └── Controller │ │ │ ├── GatewayControllerTest.php │ │ │ ├── PaymentControllerTest.php │ │ │ └── TokenControllerTest.php │ └── Storage │ │ └── YadmStorageTest.php └── bootstrap.php └── translations └── .gitignore /.dockerignore: -------------------------------------------------------------------------------- 1 | PayumServerUI 2 | -------------------------------------------------------------------------------- /.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/.env.dist -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/.gitignore -------------------------------------------------------------------------------- /.test.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/.test.env.dist -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/README.md -------------------------------------------------------------------------------- /bin/build-docker-image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/bin/build-docker-image -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/bin/console -------------------------------------------------------------------------------- /bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/bin/phpunit -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/composer.lock -------------------------------------------------------------------------------- /config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/config/bundles.php -------------------------------------------------------------------------------- /config/packages/dev/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/config/packages/dev/routing.yaml -------------------------------------------------------------------------------- /config/packages/dev/security_checker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/config/packages/dev/security_checker.yaml -------------------------------------------------------------------------------- /config/packages/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/config/packages/framework.yaml -------------------------------------------------------------------------------- /config/packages/nelmio_cors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/config/packages/nelmio_cors.yaml -------------------------------------------------------------------------------- /config/packages/payum.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/config/packages/payum.yaml -------------------------------------------------------------------------------- /config/packages/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/config/packages/routing.yaml -------------------------------------------------------------------------------- /config/packages/test/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/config/packages/test/framework.yaml -------------------------------------------------------------------------------- /config/packages/translation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/config/packages/translation.yaml -------------------------------------------------------------------------------- /config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/config/packages/twig.yaml -------------------------------------------------------------------------------- /config/packages/yadm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/config/packages/yadm.yaml -------------------------------------------------------------------------------- /config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/config/routes.yaml -------------------------------------------------------------------------------- /config/routes/dev/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/config/routes/dev/twig.yaml -------------------------------------------------------------------------------- /config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/config/services.yaml -------------------------------------------------------------------------------- /config/services_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/config/services_test.yaml -------------------------------------------------------------------------------- /docker-compose.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/docker-compose.yml.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /public/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/public/demo.html -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/public/index.php -------------------------------------------------------------------------------- /public/payum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/public/payum.js -------------------------------------------------------------------------------- /src/Action/AuthorizePaymentAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Action/AuthorizePaymentAction.php -------------------------------------------------------------------------------- /src/Action/CapturePaymentAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Action/CapturePaymentAction.php -------------------------------------------------------------------------------- /src/Action/ExecuteSameRequestWithPaymentDetailsAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Action/ExecuteSameRequestWithPaymentDetailsAction.php -------------------------------------------------------------------------------- /src/Action/ObtainMissingDetailsAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Action/ObtainMissingDetailsAction.php -------------------------------------------------------------------------------- /src/Action/ObtainMissingDetailsForBe2BillAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Action/ObtainMissingDetailsForBe2BillAction.php -------------------------------------------------------------------------------- /src/Api/Controller/GatewayController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Api/Controller/GatewayController.php -------------------------------------------------------------------------------- /src/Api/Controller/PaymentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Api/Controller/PaymentController.php -------------------------------------------------------------------------------- /src/Api/Controller/RootController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Api/Controller/RootController.php -------------------------------------------------------------------------------- /src/Api/Controller/TokenController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Api/Controller/TokenController.php -------------------------------------------------------------------------------- /src/Api/View/GatewayConfigToJsonConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Api/View/GatewayConfigToJsonConverter.php -------------------------------------------------------------------------------- /src/Api/View/PaymentToJsonConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Api/View/PaymentToJsonConverter.php -------------------------------------------------------------------------------- /src/Api/View/TokenToJsonConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Api/View/TokenToJsonConverter.php -------------------------------------------------------------------------------- /src/Controller/AuthorizeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Controller/AuthorizeController.php -------------------------------------------------------------------------------- /src/Controller/CaptureController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Controller/CaptureController.php -------------------------------------------------------------------------------- /src/Controller/ForwardExtensionTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Controller/ForwardExtensionTrait.php -------------------------------------------------------------------------------- /src/Controller/GatewayChooserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Controller/GatewayChooserInterface.php -------------------------------------------------------------------------------- /src/Converter/ReplyToJsonResponseConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Converter/ReplyToJsonResponseConverter.php -------------------------------------------------------------------------------- /src/EventListener/Exception/JsonOutputExceptionListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/EventListener/Exception/JsonOutputExceptionListener.php -------------------------------------------------------------------------------- /src/EventListener/Request/GatewayChooserListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/EventListener/Request/GatewayChooserListener.php -------------------------------------------------------------------------------- /src/EventListener/Response/ReplyToHttpResponseListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/EventListener/Response/ReplyToHttpResponseListener.php -------------------------------------------------------------------------------- /src/EventListener/Response/VndHeaderListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/EventListener/Response/VndHeaderListener.php -------------------------------------------------------------------------------- /src/Extension/UpdatePaymentStatusExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Extension/UpdatePaymentStatusExtension.php -------------------------------------------------------------------------------- /src/Factory/GatewayChoicesCallbackFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Factory/GatewayChoicesCallbackFactory.php -------------------------------------------------------------------------------- /src/Form/EventListener/PatchSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Form/EventListener/PatchSubscriber.php -------------------------------------------------------------------------------- /src/Form/Extension/CreditCardExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Form/Extension/CreditCardExtension.php -------------------------------------------------------------------------------- /src/Form/Type/ChooseGatewayType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Form/Type/ChooseGatewayType.php -------------------------------------------------------------------------------- /src/InvalidJsonException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/InvalidJsonException.php -------------------------------------------------------------------------------- /src/JsonDecode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/JsonDecode.php -------------------------------------------------------------------------------- /src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Kernel.php -------------------------------------------------------------------------------- /src/Model/GatewayConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Model/GatewayConfig.php -------------------------------------------------------------------------------- /src/Model/Identity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Model/Identity.php -------------------------------------------------------------------------------- /src/Model/Payer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Model/Payer.php -------------------------------------------------------------------------------- /src/Model/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Model/Payment.php -------------------------------------------------------------------------------- /src/Model/PaymentToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Model/PaymentToken.php -------------------------------------------------------------------------------- /src/Request/ObtainMissingDetailsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Request/ObtainMissingDetailsRequest.php -------------------------------------------------------------------------------- /src/Schema/Controller/GatewaySchemaController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Schema/Controller/GatewaySchemaController.php -------------------------------------------------------------------------------- /src/Schema/Controller/PaymentSchemaController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Schema/Controller/PaymentSchemaController.php -------------------------------------------------------------------------------- /src/Schema/Controller/TokenSchemaController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Schema/Controller/TokenSchemaController.php -------------------------------------------------------------------------------- /src/Schema/GatewayFormDefinitionBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Schema/GatewayFormDefinitionBuilder.php -------------------------------------------------------------------------------- /src/Schema/GatewaySchemaBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Schema/GatewaySchemaBuilder.php -------------------------------------------------------------------------------- /src/Schema/PaymentFormDefinitionBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Schema/PaymentFormDefinitionBuilder.php -------------------------------------------------------------------------------- /src/Schema/PaymentSchemaBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Schema/PaymentSchemaBuilder.php -------------------------------------------------------------------------------- /src/Schema/TokenSchemaBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Schema/TokenSchemaBuilder.php -------------------------------------------------------------------------------- /src/Storage/GatewayConfigStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Storage/GatewayConfigStorage.php -------------------------------------------------------------------------------- /src/Storage/PaymentStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Storage/PaymentStorage.php -------------------------------------------------------------------------------- /src/Storage/PaymentTokenStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Storage/PaymentTokenStorage.php -------------------------------------------------------------------------------- /src/Storage/YadmStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Storage/YadmStorage.php -------------------------------------------------------------------------------- /src/Storage/YadmStorageFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Storage/YadmStorageFactory.php -------------------------------------------------------------------------------- /src/Util/StringUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Util/StringUtil.php -------------------------------------------------------------------------------- /src/Util/UUID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Util/UUID.php -------------------------------------------------------------------------------- /src/Yadm/Hydrator/GatewayConfigHydrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Yadm/Hydrator/GatewayConfigHydrator.php -------------------------------------------------------------------------------- /src/Yadm/Hydrator/PaymentHydrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Yadm/Hydrator/PaymentHydrator.php -------------------------------------------------------------------------------- /src/Yadm/Hydrator/PaymentTokenHydrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/src/Yadm/Hydrator/PaymentTokenHydrator.php -------------------------------------------------------------------------------- /symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/symfony.lock -------------------------------------------------------------------------------- /templates/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/templates/base.html.twig -------------------------------------------------------------------------------- /templates/chooseGateway.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/templates/chooseGateway.html.twig -------------------------------------------------------------------------------- /templates/obtainCreditCardWithJessepollakCard.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/templates/obtainCreditCardWithJessepollakCard.html.twig -------------------------------------------------------------------------------- /templates/obtainMissingDetails.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/templates/obtainMissingDetails.html.twig -------------------------------------------------------------------------------- /tests/Test/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/tests/Test/Client.php -------------------------------------------------------------------------------- /tests/Test/ResponseHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/tests/Test/ResponseHelper.php -------------------------------------------------------------------------------- /tests/Test/WebTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/tests/Test/WebTestCase.php -------------------------------------------------------------------------------- /tests/Tests/Functional/Api/Controller/GatewayControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/tests/Tests/Functional/Api/Controller/GatewayControllerTest.php -------------------------------------------------------------------------------- /tests/Tests/Functional/Api/Controller/PaymentControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/tests/Tests/Functional/Api/Controller/PaymentControllerTest.php -------------------------------------------------------------------------------- /tests/Tests/Functional/Api/Controller/TokenControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/tests/Tests/Functional/Api/Controller/TokenControllerTest.php -------------------------------------------------------------------------------- /tests/Tests/Functional/ApplicationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/tests/Tests/Functional/ApplicationTest.php -------------------------------------------------------------------------------- /tests/Tests/Functional/Controller/AuthorizeControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/tests/Tests/Functional/Controller/AuthorizeControllerTest.php -------------------------------------------------------------------------------- /tests/Tests/Functional/Controller/CaptureControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/tests/Tests/Functional/Controller/CaptureControllerTest.php -------------------------------------------------------------------------------- /tests/Tests/Functional/Model/GatewayConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/tests/Tests/Functional/Model/GatewayConfigTest.php -------------------------------------------------------------------------------- /tests/Tests/Functional/Model/PaymentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/tests/Tests/Functional/Model/PaymentTest.php -------------------------------------------------------------------------------- /tests/Tests/Functional/Model/PaymentTokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/tests/Tests/Functional/Model/PaymentTokenTest.php -------------------------------------------------------------------------------- /tests/Tests/Functional/Schema/Controller/GatewayControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/tests/Tests/Functional/Schema/Controller/GatewayControllerTest.php -------------------------------------------------------------------------------- /tests/Tests/Functional/Schema/Controller/PaymentControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/tests/Tests/Functional/Schema/Controller/PaymentControllerTest.php -------------------------------------------------------------------------------- /tests/Tests/Functional/Schema/Controller/TokenControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/tests/Tests/Functional/Schema/Controller/TokenControllerTest.php -------------------------------------------------------------------------------- /tests/Tests/Storage/YadmStorageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/tests/Tests/Storage/YadmStorageTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Payum/PayumServer/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /translations/.gitignore: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------