forked from php-etl/fast-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.57 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
{
"name": "php-etl/fast-map",
"description": "This library implements a compiled data mapping library",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Kiboko SAS",
"homepage": "http://kiboko.fr"
},
{
"name": "Grégory Planchat",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": "^7.2",
"nikic/php-parser": "^4.2",
"symfony/property-access": "^3.4",
"symfony/expression-language": "^3.4",
"symfony/cache": "^3.4",
"doctrine/inflector": "^1.3",
"php-etl/contracts": "^1.0@dev",
"php-etl/metadata": "^1.0@dev",
"php-etl/phpspec-extension": "^1.0@dev"
},
"require-dev": {
"phpspec/phpspec": "^5.1",
"phpunit/phpunit": "^7.0",
"johnkary/phpunit-speedtrap": "^3.1@dev",
"mybuilder/phpunit-accelerator": "dev-master",
"phpstan/phpstan": "^0.12.0@dev",
"infection/infection": "dev-master",
"friends-of-phpspec/phpspec-code-coverage": "^4.0@dev"
},
"autoload": {
"psr-4": {
"Kiboko\\Component\\ETL\\FastMap\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\Kiboko\\Component\\ETL\\FastMap\\": "spec/",
"unit\\Kiboko\\Component\\ETL\\FastMap\\": "unit/",
"functional\\Kiboko\\Component\\ETL\\FastMap\\": "functional/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}