-
Notifications
You must be signed in to change notification settings - Fork 106
/
composer.json
112 lines (112 loc) · 3.11 KB
/
composer.json
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "atk4/ui",
"description": "Agile UI - Web Component Framework written in PHP",
"license": "MIT",
"type": "library",
"keywords": [
"framework",
"ui",
"web",
"form",
"component",
"widget",
"render",
"gadget",
"button",
"grid",
"crud"
],
"version": "dev-develop",
"authors": [
{
"name": "Romans Malinovskis",
"homepage": "https://nearly.guru/"
},
{
"name": "Alain Belair"
},
{
"name": "Imants Horsts",
"homepage": "https://darkside.lv/"
},
{
"name": "Francesco Danti",
"homepage": "https://oracoltech.com/"
},
{
"name": "Michael Voříšek",
"homepage": "https://mvorisek.cz/"
},
{
"name": "Philipp Grashoff"
},
{
"name": "Alex Cicovic",
"homepage": "https://alexcicovic.com/"
},
{
"name": "Georgi Hristov",
"homepage": "https://xsystems.io/"
}
],
"homepage": "https://github.com/atk4/ui",
"require": {
"php": ">=7.4 <8.4",
"atk4/data": "dev-develop",
"nyholm/psr7": "^1.6",
"nyholm/psr7-server": "^1.0",
"symfony/filesystem": "^4.4 || ^5.3 || ^6.0",
"symfony/http-foundation": "^4.4 || ^5.3 || ^6.0"
},
"require-release": {
"php": ">=7.4 <8.4",
"atk4/data": "~5.3.0",
"nyholm/psr7": "^1.6",
"nyholm/psr7-server": "^1.0",
"symfony/filesystem": "^4.4 || ^5.3 || ^6.0",
"symfony/http-foundation": "^4.4 || ^5.3 || ^6.0"
},
"require-dev": {
"atk4/behat-mink-selenium2-driver": "^1.6.2",
"behat/mink-extension": "^2.3.1",
"ergebnis/composer-normalize": "^2.13",
"ergebnis/phpunit-slow-test-detector": "^2.9",
"friendsofphp/php-cs-fixer": "^3.0",
"fzaninotto/faker": "^1.6",
"guzzlehttp/guzzle": "^7.3",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^9.5.5 || ^10.0 || ^11.0",
"symfony/process": "^4.4.30 || ^5.3.7 || ^6.0"
},
"conflict": {
"behat/behat": "<3.9",
"behat/mink": "<1.9",
"guzzlehttp/psr7": "<2.4",
"symfony/console": "<4.4.30 || >=5 <5.3.7",
"symfony/css-selector": "<4.4.24 || >=5 <5.2.9",
"symfony/filesystem": "<4.4.30 || >=5 <5.3.7",
"symfony/http-foundation": "<4.4.30 || >=5 <5.3.7"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Atk4\\Ui\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Atk4\\Ui\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"sort-packages": true
}
}