-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.87 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "waaz/payline-plugin",
"type": "sylius-plugin",
"description": "Payline payment plugin for Sylius",
"license": "MIT",
"authors": [
{
"name": "Andde Zudaire",
"email": "andde@studiowaaz.com"
}
],
"require": {
"php": "^8.1 || ^8.2 || ^8.3",
"sylius/sylius": "^1.12 || ^1.13"
},
"require-dev": {
"friends-of-behat/page-object-extension": "^0.3",
"friends-of-behat/suite-settings-extension": "^1.0",
"phpstan/phpstan-doctrine": "^1.5",
"phpstan/phpstan-webmozart-assert": "^1.2",
"sylius-labs/coding-standard": "^5.0",
"symfony/browser-kit": "^5.4 || ^6.0 || ^7.0",
"symfony/debug-bundle": "^5.4 || ^6.0 || ^7.0",
"symfony/dotenv": "^5.4 || ^6.0 || ^7.0",
"symfony/intl": "^5.4 || ^6.0 || ^7.0",
"symfony/web-profiler-bundle": "^5.4 || ^6.0 || ^7.0",
"phpspec/phpspec": "^7.0",
"phpunit/phpunit": "^9.0 || ^10.0",
"behat/behat": "^3.8",
"behat/mink": "^1.8",
"behat/mink-browserkit-driver": "^1.4 || ^2.0",
"behat/mink-extension": "^2.3",
"behat/mink-selenium2-driver": "^1.4 || ^1.6",
"friends-of-behat/service-container-extension": "^1.0",
"friends-of-behat/symfony-extension": "^2.0",
"friends-of-behat/variadic-extension": "^1.0",
"se/selenium-server-standalone": "^3.141 || ^4.0",
"rector/rector": "^0.15.0 || ^1.0"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Waaz\\PaylinePlugin\\": "src/",
"Tests\\Acme\\SyliusExamplePlugin\\": "tests/"
}
},
"autoload-dev": {
"classmap": [
"tests/Application/Kernel.php"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
}
}