forked from anu-nayyar/testtask
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.16 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.16 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
50
51
52
53
54
{
"name": "eoneopay/testtask",
"description": "Starting point for PHP engineer interviews",
"keywords": [
"framework",
"laravel",
"lumen"
],
"license": "MIT",
"type": "project",
"require": {
"php": ">=7.1.3",
"eoneopay/utils": "dev-master",
"laravel/lumen-framework": "5.6.*",
"laravel-doctrine/orm": "^1.4",
"pacely/mailchimp-apiv3": "^1.0",
"vlucas/phpdotenv": "~2.2"
},
"require-dev": {
"eoneopay/standards": "dev-master",
"fzaninotto/faker": "~1.4",
"mockery/mockery": "~1.0",
"php-http/guzzle6-adapter": "^1.1",
"phpmd/phpmd": "^2.6",
"phpstan/phpstan": "^0.9",
"phpunit/phpunit": "^7.0",
"roave/security-advisories": "dev-master",
"sebastian/phpcpd": "^4.0",
"squizlabs/php_codesniffer": "3.*"
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"helpers.php"
]
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true
}
}