-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
47 lines (47 loc) · 1.33 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
{
"name": "may-den/pineapple",
"description": "An API-compatible replacement, forked from and for PEAR DB",
"keywords": ["database"],
"license": [
"BSD-2-Clause",
"PHP-3.0"
],
"require": {
"php": "^7.4 || ^8.0",
"ext-pdo": "*"
},
"suggest": {
"doctrine/dbal": "DoctrineDbal driver requires Doctrine DBAL >=2.5 to be installed"
},
"scripts": {
"test": "phpunit --colors=auto",
"sniffer:php82": "phpcs -p . --ignore=vendor/* --standard=vendor/phpcompatibility/php-compatibility/PHPCompatibility --extensions=php --report-full=PHPCompatibilityReport.txt --runtime-set testVersion 8.2"
},
"autoload": {
"psr-4": {
"Pineapple\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pineapple\\Test\\": "test/"
}
},
"require-dev": {
"phpunit/phpunit": ">=5.4",
"ext-pdo_sqlite": "*",
"doctrine/dbal": ">=2.5",
"phpspec/prophecy": "^1.7",
"mikey179/vfsstream": "^1.6",
"squizlabs/php_codesniffer": "^3.7",
"phpcompatibility/php-compatibility": "dev-develop"
},
"conflict": {
"doctrine/dbal": ">=3"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
}
}