-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
38 lines (38 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
36
37
38
{
"name": "greg-md/php-app",
"type": "app",
"description": "Greg PHP Application is based on Greg PHP Framework and it's components.",
"keywords": [ "greg-md", "greg-php", "php-app", "app", "application", "php", "web-artisans" ],
"homepage": "https://github.com/greg-md/php-app",
"license": "MIT",
"authors": [
{ "name": "Grigorii Duca", "email": "[email protected]", "homepage": "http://greg.md/" }
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.3",
"ext-pdo": "*",
"ext-json": "*",
"greg-md/php-app-cache": "dev-master",
"greg-md/php-app-debug-bar": "dev-master",
"greg-md/php-app-imagix": "dev-master",
"greg-md/php-app-installer": "dev-master",
"greg-md/php-app-orm": "dev-master",
"greg-md/php-app-view": "dev-master",
"symfony/var-dumper": "^4"
},
"require-dev": {
"phpunit/phpunit": "^8"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"App\\": "tests/"
}
}
}