This repository has been archived by the owner on Mar 1, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
112 lines (112 loc) · 4.25 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "narrowspark/automatic",
"type": "composer-plugin",
"description": "Composer plugin for automate the most common tasks of applications.",
"keywords": [
"narrowspark",
"composer-plugin",
"viserio",
"discovery",
"automatic",
"configurators",
"skeleton",
"composer",
"audit",
"security",
"prefetcher"
],
"homepage": "http://github.com/narrowspark/automatic",
"license": "MIT",
"authors": [
{
"name": "Daniel Bannert",
"email": "[email protected]",
"homepage": "http://www.anolilab.de",
"role": "Developer"
}
],
"require": {
"php": "^7.3",
"ext-json": "*",
"ext-tokenizer": "*",
"composer-plugin-api": "^1.0"
},
"require-dev": {
"composer/composer": "^1.10.5",
"mockery/mockery": "^1.3.1",
"narrowspark/testing-helper": "^8.0.2",
"nyholm/nsa": "^1.1.0",
"phpunit/phpunit": "^8.5.4",
"ocramius/package-versions": "^1.5.1",
"justinrainbow/json-schema": "^4.0 || ^5.0",
"symfony/process": "^5.0.8"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "0.13.x-dev"
},
"class": [
"Narrowspark\\Automatic\\Prefetcher\\Plugin",
"Narrowspark\\Automatic\\Security\\Plugin",
"Narrowspark\\Automatic\\Automatic"
]
},
"autoload": {
"psr-4": {
"Narrowspark\\Automatic\\": "src/Automatic/",
"Narrowspark\\Automatic\\Common\\": "src/Common/",
"Narrowspark\\Automatic\\Prefetcher\\": "src/Prefetcher/",
"Narrowspark\\Automatic\\Security\\": "src/Security/"
},
"exclude-from-classmap": [
"/tests/"
]
},
"autoload-dev": {
"psr-4": {
"Narrowspark\\Automatic\\Tests\\": "tests/Automatic/",
"Narrowspark\\Automatic\\Tests\\Common\\": "tests/Common/",
"Narrowspark\\Automatic\\Tests\\AutoReview\\": "tests/AutoReview/",
"Narrowspark\\Automatic\\Tests\\Prefetcher\\": "tests/Prefetcher/",
"Narrowspark\\Automatic\\Tests\\Security\\": "tests/Security/"
},
"files": [
"tests/Automatic/FunctionMock.php",
"tests/Prefetcher/FunctionMock.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"changelog": "composer --working-dir=./.build changelog-generator",
"coverage": [
"phpunit --dump-xdebug-filter=./.build/phpunit/.xdebug-filter.php",
"phpunit --prepend=./.build/phpunit/.xdebug-filter.php --coverage-html=./.build/phpunit/coverage"
],
"cs": "composer --working-dir=./.build cs -- -v",
"cs:check": "composer --working-dir=./.build cs:check -- -v",
"phpstan": "composer --working-dir=./.build phpstan -- --memory-limit=-1",
"psalm": "composer --working-dir=./.build psalm",
"psalm:fix": "composer --working-dir=./.build psalm:fix",
"infection": "composer --working-dir=./.build infection -- --min-covered-msi=100 --min-msi=100",
"rector-src": "composer --working-dir=./.build rector-src",
"rector-src:fix": "composer --working-dir=./.build rector-src:fix",
"rector-tests": "composer --working-dir=./.build rector-tests",
"rector-tests:fix": "composer --working-dir=./.build rector-tests:fix",
"test": "phpunit",
"post-install-cmd": "composer --working-dir=./.build install --lock",
"post-update-cmd": "composer --working-dir=./.build update --lock",
"test:common": "phpunit --testsuite=\"Narrowspark Automatic Common Test Suite\"",
"test:automatic": "phpunit --testsuite=\"Narrowspark Automatic Test Suite\"",
"test:prefetcher": "phpunit --testsuite=\"Narrowspark Automatic Prefetcher Test Suite\"",
"test:security": "phpunit --testsuite=\"Narrowspark Automatic Security Test Suite\""
},
"support": {
"issues": "https://github.com/narrowspark/automatic/issues",
"source": "https://github.com/narrowspark/automatic"
}
}