forked from softberg/quantum-php-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.32 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.32 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
{
"name": "quantum/project",
"description": "Quantum Project",
"keywords": ["framework", "php", "quantum", "project"],
"license": "MIT",
"type": "project",
"require": {
"quantum/framework": "^2.9.9",
"fakerphp/faker": "^1.15",
"bluemmb/faker-picsum-photos-provider": "^2.0",
"ottaviano/faker-gravatar": "^0.3.0",
"doctrine/annotations": "^2.0",
"voku/html-min": "^4.5",
"league/commonmark": "^1.6",
"ezyang/htmlpurifier": "^4.18",
"symfony/process": "^5.4"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"mockery/mockery": "^1.2"
},
"autoload": {
"psr-4": {
"Modules\\": "modules",
"Shared\\": "shared"
}
},
"autoload-dev": {
"psr-4": {
"Quantum\\Tests\\": "tests/"
}
},
"scripts": {
"post-create-project-cmd": [
"php qt core:env",
"php qt core:key --length=64",
"php qt install:demo --yes",
"php qt install:openapi Api",
"php qt install:debugbar",
"php qt core:version"
],
"test": "vendor/bin/phpunit --stderr --coverage-clover coverage.xml"
},
"config": {
"audit": {
"block-insecure": false
}
}
}