forked from thephpleague/skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.43 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
{
"name": "phwoolcon/skeleton",
"type": "library",
"description": "packagist-colon-package_description",
"keywords": [
"packagist-colon-vendor",
"packagist-colon-package_name"
],
"homepage": "https://github.com/:vendor/:package_name",
"license": "MIT",
"authors": [
{
"name": "packagist-colon-author_name",
"email": "[email protected]",
"homepage": "https://pass-packagist-check.com/:author_website",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "~5.5|~7.0"
},
"require-dev": {
"phwoolcon/phwoolcon": "~1.0",
"phwoolcon/test-starter": "~1.0",
"wikimedia/composer-merge-plugin": "~1.3"
},
"autoload": {
"psr-4": {
":vendor\\:package_name\\": "src"
}
},
"autoload-dev": {
"psr-4": {
":vendor\\:package_name\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"check-style": "vendor/bin/phpcs",
"fix-style": "vendor/bin/phpcbf"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"merge-plugin": {
"include": [
"composer.local*.json"
]
}
},
"config": {
"sort-packages": true
}
}