-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
36 lines (36 loc) · 931 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
{
"name": "thamaraiselvam/mysql-import",
"description": "Import .sql file into a database using mysqli",
"license": "MIT",
"authors": [
{
"name": "thamaraiselvam",
"email": "[email protected]",
"homepage": "https://thamaraiselvam.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.6.0",
"squizlabs/php_codesniffer": "^3.0@dev"
},
"autoload": {
"psr-4": {
"Thamaraiselvam\\MysqlImport\\": "./",
"Tests\\Thamaraiselvam\\MysqlImport\\": "./tests"
}
},
"scripts": {
"phpcs": [
"./vendor/bin/phpcs --colors --standard=PSR2 Import.php"
],
"phpunit": [
"./vendor/bin/phpunit"
]
},
"minimum-stability": "dev",
"require-dev": {
"phpunit/phpunit": ">=7.0",
"yoast/phpunit-polyfills": "1.x-dev"
}
}