-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (43 loc) · 1018 Bytes
/
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
{
"name": "polinome/trieur",
"type": "library",
"description": "",
"keywords": ["dataTables","Export","CSV"],
"license": "Beerware",
"authors": [
{
"name": "polinome",
"email": "contact@polinome.com"
}
],
"require": {
"php": ">=5.6.0",
"solire/conf": "^2.4",
"pimple/pimple": "~3.0"
},
"require-dev": {
"filp/whoops": "1.0.*",
"doctrine/orm": "^2.4",
"symfony/yaml": "^2.5",
"m6web/coke": "~2.1",
"siwayll/phpcs-norme-dpsi": "~3.2",
"phploc/phploc": "~2.1",
"pdepend/pdepend": "~2.1",
"phpmd/phpmd": "~2.2",
"sebastian/phpcpd": "~2.0",
"mayflower/php-codebrowser": "~1.1",
"atoum/atoum": "^3.3"
},
"suggest": {
"symfony/yaml": "version 2.5.* to read yaml config file (used in examples)",
"doctrine/dbal": "version 2.4.* if using a data source is a database"
},
"autoload": {
"psr-4": {
"Polinome\\Trieur\\": "./"
}
},
"scripts": {
"test": "./vendor/bin/atoum -d ./tests/units"
}
}