-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.72 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
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "mirdware/scoop",
"description": "Simple Characteristics of Object Oriented PHP",
"keywords": ["scoop", "ddd", "hexagonal", "cqrs", "onion", "engine"],
"license": "MIT",
"type": "project",
"homepage": "http://getscoop.org",
"authors": [
{
"name": "Marlon Ramírez",
"email": "marlonramirez@outlook.com"
}
],
"autoload": {
"psr-4": {
"App\\": "src/",
"Scoop\\": "scoop/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests/"
}
},
"minimum-stability": "stable",
"require": {
"php": "^5.3|^7.0|^8.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.10",
"phpcompatibility/php-compatibility": "^9.3",
"phpunit/phpunit": "^11.2",
"zircote/swagger-php": "^4.10",
"phpat/phpat": "^0.10.18",
"phpstan/extension-installer": "^1.4",
"veewee/composer-run-parallel": "^1.3"
},
"scripts": {
"pre-install-cmd": [
"Composer\\Config::disableProcessTimeout"
],
"test:lint": "./vendor/bin/phpcs -p ./src --standard=app/phpcs.xml",
"test:static": "./vendor/bin/phpstan --configuration=app/phpstan.neon",
"test:unit" : "./vendor/bin/phpunit --configuration=app/phpunit.xml",
"test": "@parallel test:lint test:static test:unit",
"fix:lint": "./vendor/bin/phpcbf --standard=app/phpcs.xml -p",
"fix": "@fix:lint ./src",
"api": "./vendor/bin/openapi src -o openapi.yaml"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"veewee/composer-run-parallel": true
}
}
}