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
33 lines (33 loc) · 860 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 860 Bytes
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
{
"name": "quantum/project",
"description": "Quantum Project",
"keywords": ["framework", "php", "quantum", "project"],
"license": "MIT",
"version": "2.6.0",
"type": "project",
"require": {
"quantum/framework": "dev-master",
"fakerphp/faker": "^1.15",
"bluemmb/faker-picsum-photos-provider": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"mockery/mockery": "^1.2"
},
"autoload": {
"psr-4": {
"Modules\\": "modules",
"Hooks\\": "hooks",
"Shared\\": "shared"
}
},
"scripts": {
"post-create-project-cmd": [
"php qt core:env",
"php qt core:debugbar",
"php qt core:key --length=64",
"php qt install:demo",
"php qt core:version"
]
}
}