forked from CamiloSierraH/php-data-mapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.23 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
{
"name": "molotov/php-data-mapper",
"type": "library",
"description": "Mapper and Repository factories that implements the Data Mapper structure",
"keywords": [
"php",
"data",
"mapper"
],
"homepage": "https://github.com/MolotovTv/php-data-mapper",
"license": "MIT",
"authors": [
{
"name": "MolotovTv",
"email": "[email protected]",
"homepage": "http://asticode.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"aura/sql": "~4.0",
"asticode/php-toolbox": "^1.1.0"
},
"require-dev": {
"phpmd/phpmd": "~1.4",
"phpunit/phpunit": "^8.0",
"sebastian/phpcpd": "*",
"squizlabs/php_codesniffer": "~1.0"
},
"autoload": {
"psr-4": {
"Asticode\\DataMapper\\": "src/"
}
},
"scripts": {
"test": [
"cd tests; ../vendor/phpunit/phpunit/phpunit --configuration ../phpunit.xml --verbose"
],
"test-coverage": [
"cd tests; ../vendor/phpunit/phpunit/phpunit --configuration ../phpunit.xml --coverage-html coverage"
],
"phpunit": "php vendor/bin/phpunit"
}
}