-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.42 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.42 KB
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
{
"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": "theodorejb@outlook.com"
}
],
"require": {
"php": ">=8.2",
"ext-pdo": "*",
"devtheorem/peachy-sql": "^7.0.1",
"psr/http-message": "^1.1 || ^2.0",
"shrikeh/teapot": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.91",
"phpstan/phpstan": "^2.1.32",
"phpunit/phpunit": "^11.5"
},
"autoload": {
"psr-4": {
"DevTheorem\\Phaster\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DevTheorem\\Phaster\\Test\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"analyze": "phpstan analyze",
"cs-fix": "php-cs-fixer fix -v",
"test": "phpunit tests --bootstrap tests/bootstrap.php",
"test-mssql": "@test --exclude-group mysql --exclude-group pgsql",
"test-mysql": "@test --exclude-group mssql --exclude-group pgsql",
"test-pgsql": "@test --exclude-group mssql --exclude-group mysql",
"test-without-mssql": "@test --exclude-group mssql"
}
}