forked from eloquent/composer-config-reader
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 983 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 983 Bytes
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
{
"name": "elgg/composer-config-reader",
"description": "A light-weight component for reading Composer configuration files.",
"keywords": ["composer", "configuration", "reader", "parser"],
"homepage": "https://github.com/eloquent/composer-config-reader",
"license": "MIT",
"authors": [
{
"name": "Erin Millard",
"email": "ezzatron@gmail.com",
"homepage": "http://ezzatron.com/"
}
],
"require": {
"php": ">=7.2",
"elgg/enumeration": "dev-master",
"justinrainbow/json-schema": "^5"
},
"require-dev": {
"eloquent/code-style": "^1",
"eloquent/phony-phpunit": "^6",
"friendsofphp/php-cs-fixer": "^2",
"phpunit/phpunit": "^8"
},
"autoload": {
"psr-4": {
"Eloquent\\Composer\\Configuration\\": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
}
}