-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.48 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
{
"name": "activecollab/retro",
"type": "library",
"description": "Library that ties together different bits needed to write a web app",
"license": "MIT",
"homepage": "https://labs.activecollab.com",
"authors": [
{
"name": "Ilija Studen",
"email": "ilija.studen@activecollab.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.2",
"activecollab/authentication": "dev-master",
"activecollab/baseline": "^3.0",
"activecollab/eventsdispatcher": "^1.0",
"activecollab/databasemigrations": "^4.0",
"activecollab/databasestructure": "dev-master",
"activecollab/sitemap": "dev-master",
"activecollab/templatedui": "dev-master",
"akrabat/ip-address-middleware": "^2.1",
"giggsey/libphonenumber-for-php": "^8.13",
"php-di/php-di": "^6.3",
"php-di/slim-bridge": "^3.2",
"symfony/console": "^4.0||^5.0||^6.0",
"vlucas/phpdotenv": "^5.0.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "3.4.0",
"nette/php-generator": "^4.0",
"phpunit/phpunit": "~9.0"
},
"suggest": {
"nette/php-generator": "To run code generation commands"
},
"autoload": {
"psr-4": {
"ActiveCollab\\Retro\\": "src",
"ActiveCollab\\Retro\\Test\\": "test/src",
"ActiveCollab\\Retro\\Test\\Fixtures\\": "test/fixtures"
}
}
}