-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 1.01 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
{
"name": "activecollab/templatedui",
"type": "library",
"description": "Library for building web interfaces using templates, on the backend.",
"license": "MIT",
"homepage": "https://labs.activecollab.com",
"authors": [
{
"name": "Ilija Studen",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.2",
"activecollab/containeraccess": "^2.0",
"activecollab/datevalue": "^2.0",
"activecollab/templateengine": "^3.0",
"activecollab/user": "^4.0",
"activecollab/utils": "^3.0",
"shark/simple_html_dom": "dev-master",
"smarty/smarty": "^4.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"phpunit/phpunit": "~9.0"
},
"autoload": {
"psr-4": {
"ActiveCollab\\TemplatedUI\\": "src",
"ActiveCollab\\TemplatedUI\\Test\\": "test/src"
}
}
}