This repository was archived by the owner on Mar 23, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.48 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.48 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": "atk4/community",
"description": "Community maintained extensions for atk4/data and atk/ui.",
"license": "MIT",
"type": "library",
"keywords": [
"atk4",
"data",
"ui",
"community"
],
"version": "dev-develop",
"authors": [
{
"name": "GitHub community",
"homepage": "https://github.com/atk4/ui/graphs/contributors"
}
],
"homepage": "https://github.com/atk4/community",
"require": {
"php": ">=7.4 <8.4",
"atk4/ui": "dev-develop"
},
"require-release": {
"php": ">=7.4 <8.4",
"atk4/ui": "~5.1.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.13",
"ergebnis/phpunit-slow-test-detector": "^2.9",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-strict-rules": "^1.3",
"phpunit/phpunit": "^9.5.5 || ^10.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Atk4\\Community\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Atk4\\Community\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"sort-packages": true
}
}