-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
43 lines (43 loc) · 1.13 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
{
"name": "joblocal/challenge-todoservice",
"description": "PHP Programming Challenge: RESTful ToDo Service",
"keywords": ["joblocal", "php", "challenge", "todo-service"],
"license": "MIT",
"type": "project",
"require": {
"php": "^7.2",
"laravel/lumen-framework": "^6.0"
},
"require-dev": {
"fzaninotto/faker": "^1.4",
"phpunit/phpunit": "^8.0",
"mockery/mockery": "^1.0",
"squizlabs/php_codesniffer": "^3"
},
"autoload": {
"classmap": [
"database/seeds",
"database/factories"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"scripts": {
"start": "php -S localhost:8000 -t public",
"test": "./vendor/bin/phpunit --order-by random -c phpunit.xml",
"lint": "./vendor/bin/phpcs --standard=phpcs.xml --colors -p ."
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true
}