-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.27 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
{
"name": "php-etl/metadata",
"description": "Describe data structures, to auto-configure and handle data transformation and data manipulation.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Kiboko SAS",
"homepage": "http://kiboko.fr"
},
{
"name": "Grégory Planchat",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.2",
"phpactor/docblock": "^0.3.0@dev",
"nikic/php-parser": "^4.9@dev",
"php-etl/metadata-contracts": "0.2.*",
"doctrine/inflector": "^2.0"
},
"require-dev": {
"phpspec/phpspec": "^7.0",
"friends-of-phpspec/phpspec-code-coverage": "^6.0",
"php-etl/phpspec-extension": "*",
"friendsofphp/php-cs-fixer": "^3.0",
"rector/rector": "^0.15"
},
"autoload": {
"psr-4": {
"Kiboko\\Component\\Metadata\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\Kiboko\\Component\\Metadata\\": "spec/"
}
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-main": "0.4.x-dev"
}
}
}