-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
80 lines (80 loc) · 2.05 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
{
"name": "fohn-group/fohn-ui",
"type": "library",
"description": "Web Component Framework written in PHP using Tailwind CSS. This project is an evolution of the original Agile Toolkit Ui project. (atk4-ui: https://github.com/atk4/ui)",
"keywords": [
"php",
"framework",
"tailwindcss",
"ui",
"web"
],
"homepage": "https://github.com/fohn-group/fohn-ui",
"license": "MIT",
"authors": [
{
"name": "Alain Belair",
"homepage": "https://fohn-ui.com/"
},
{
"name": "Romans Malinovskis",
"email": "[email protected]",
"homepage": "https://nearly.guru/"
},
{
"name": "Imants Horsts",
"homepage": "https://darkside.lv/"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"platform-check": false,
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"require": {
"php": ">=8.0",
"ext-intl": "*",
"ext-json": "*",
"ext-pdo": "*",
"atk4/data": "^5.2",
"guzzlehttp/psr7": "^2.2",
"myclabs/deep-copy": "^1.10"
},
"require-dev": {
"behat/behat": "^3.7",
"behat/mink": "^1.8",
"behat/mink-extension": "^2.3.1",
"behat/mink-selenium2-driver": "^1.4",
"friendsofphp/php-cs-fixer": "^3.0",
"fzaninotto/faker": "^1.6",
"guzzlehttp/guzzle": "^7.4.3",
"instaclick/php-webdriver": "^1.4.7",
"johnkary/phpunit-speedtrap": "^3.3",
"pcov/clobber": "^2.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpunit/phpcov": "*",
"phpunit/phpunit": "^9.6",
"symfony/process": "^4.4 || ^5.0"
},
"autoload": {
"psr-4": {
"Fohn\\Ui\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fohn\\Ui\\Tests\\": "tests/"
}
},
"scripts" : {
"code-style": "vendor/bin/php-cs-fixer fix --using-cache=no --diff --verbose",
"phpstan" : "vendor/bin/phpstan analyse",
"unit-test" : "vendor/phpunit/phpunit/phpunit --configuration phpunit.xml.dist"
}
}