-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
76 lines (76 loc) · 1.85 KB
/
Copy pathcomposer.json
File metadata and controls
76 lines (76 loc) · 1.85 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "pradosoft/prado-sqlmap",
"type": "prado4-extension",
"description": "SqlMap Data Mapper for the PRADO PHP Framework",
"keywords": ["prado", "framework", "sqlmap", "datamapper", "sql"],
"homepage": "https://github.com/pradosoft/prado-sqlmap",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Wei Zhuo",
"email": "weizhuo@gmail.com",
"role": "Developer"
},
{
"name": "Fabio Bas",
"email": "ctrlaltca@gmail.com",
"role": "Developer"
},
{
"name": "Brad Anderson",
"email": "belisoful@icloud.com",
"role": "Developer",
"homepage": "https://github.com/belisoful"
}
],
"autoload": {
"psr-4": {
"Prado\\": "src"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"php": ">=8.1.0",
"ext-pdo": "*"
},
"require-dev": {
"pradosoft/prado": "dev-master",
"phpunit/phpunit": "^10",
"phpdocumentor/shim": "^3",
"friendsofphp/php-cs-fixer": "^3.94",
"phpstan/phpstan": "^2.1"
},
"config": {
"platform": {
"php": "8.1"
},
"allow-plugins": {
"phpdocumentor/shim": true
}
},
"scripts": {
"fix": "vendor/bin/php-cs-fixer fix src/",
"stan": "phpstan analyse --memory-limit=512M",
"test": "vendor/bin/phpunit --testsuite unit",
"unittest": "vendor/bin/phpunit --testsuite unit,db-sqlite,db-mysql,db-pgsql,db-firebird",
"db-sqlite": "vendor/bin/phpunit --testsuite db-sqlite",
"db-mysql": "vendor/bin/phpunit --testsuite db-mysql",
"db-pgsql": "vendor/bin/phpunit --testsuite db-pgsql",
"db-firebird": "vendor/bin/phpunit --testsuite db-firebird",
"dbtest": "vendor/bin/phpunit --testsuite unit,db-sqlite,db-mysql,db-pgsql,db-firebird",
"fulltest": [
"find src -name '*.php' | xargs php -l",
"vendor/bin/php-cs-fixer fix src/",
"@stan",
"@test"
]
},
"extra": {
"bootstrap": "Prado\\Data\\SqlMap\\TSqlMapConfig"
}
}