-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
55 lines (55 loc) · 1.43 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
55
{
"name": "devtheorem/phaster",
"description": "A PSR-7 compatible library for making CRUD API endpoints",
"type": "library",
"license": "MIT",
"keywords": [
"API",
"CRUD",
"database",
"PSR-7",
"REST"
],
"authors": [
{
"name": "Theodore Brown",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"ext-pdo": "*",
"devtheorem/peachy-sql": "^7.0",
"psr/http-message": "^1.1 || ^2.0",
"shrikeh/teapot": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"phpunit/phpunit": "^10.5",
"psalm/plugin-phpunit": "^0.19",
"vimeo/psalm": "^5.26"
},
"autoload": {
"psr-4": {
"DevTheorem\\Phaster\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DevTheorem\\Phaster\\Test\\": "test/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"analyze": "psalm",
"cs-fix": "php-cs-fixer fix -v",
"test": "phpunit",
"test-mssql": "phpunit --exclude-group mysql,pgsql",
"test-mysql": "phpunit --exclude-group mssql,pgsql",
"test-pgsql": "phpunit --exclude-group mssql,mysql",
"test-without-mssql": "phpunit --exclude-group mssql",
"test-without-db": "phpunit --exclude-group mssql,mysql"
}
}