-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
59 lines (59 loc) · 1.73 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
{
"name": "divergence/divergence",
"description": "The Divergence Framework.",
"keywords": ["framework", "divergence","activerecord","orm"],
"type": "project",
"homepage": "https://packagist.org/packages/divergence/divergence",
"authors": [
{
"name": "Henry Paradiz",
"email": "henry.paradiz@gmail.com",
"homepage": "https://henryparadiz.com",
"role": "Developer"
},
{
"name": "Jack Smith",
"email": "jgs41495@gmail.com",
"role": "Developer"
}
],
"require": {
"php": ">=8.1",
"twig/twig": "*",
"filp/whoops": "*",
"symfony/var-dumper": "*",
"psr/http-server-handler": "^1.0",
"psr/http-message": "^2.0",
"guzzlehttp/psr7": "^2.0",
"twig/extra-bundle": "^3.0"
},
"autoload": {
"psr-4": {
"Divergence\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Divergence\\Tests\\": "tests/Divergence",
"Divergence\\Tests\\MockSite\\": "tests/MockSite"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "*",
"mikey179/vfsstream": "^1.6",
"fakerphp/faker": "^1.20",
"dms/phpunit-arraysubset-asserts": "^0.4.0"
},
"suggest": {
"divergence/cli": "Lets you initialize a new project as well as create, edit, and test database configurations via CLI."
},
"scripts": {
"fix-code": "php-cs-fixer fix",
"test": "vendor/bin/phpunit --coverage-clover build/logs/clover.xml"
},
"support": {
"issues": "https://github.com/Divergence/framework/issues"
},
"license": "MIT"
}