-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.94 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
{
"name": "castor/stdlib",
"description": "The Castor Standard Library for PHP",
"license": "MIT",
"keywords": [
"php",
"php8"
],
"authors": [
{
"name": "Matias Navarro Carter",
"email": "mnavarrocarter@gmail.com",
"role": "Lead Maintainer"
}
],
"autoload": {
"psr-4": {
"Castor\\": ["http/src", "os/src", "http-pipeline/src", "uuid/src", "context/src", "log/src", "http-router/src", "idl-core/src", "http-cgi-server/src", "http-client/src", "functions/src", "random/src", "uri/src", "console/src", "io/src", "security/src"]
},
"files": ["http/functions.php", "os/functions.php", "http-pipeline/functions.php", "uuid/functions.php", "context/functions.php", "log/functions.php", "http-router/functions.php", "idl-core/functions.php", "http-cgi-server/functions.php", "http-client/functions.php", "functions/functions.php", "uri/functions.php", "console/functions.php", "io/functions.php", "security/functions.php"]
},
"autoload-dev": {
"psr-4": {
"Castor\\Monorepo\\": [".castor/monorepo/src", ".castor/monorepo/tests"],
"Castor\\": ["http/tests", "os/tests", "http-pipeline/tests", "uuid/tests", "context/tests", "log/tests", "http-router/tests", "idl-core/tests", "http-cgi-server/tests", "http-client/tests", "functions/tests", "random/tests", "uri/tests", "console/tests", "io/tests", "security/tests"]
}
},
"require": {
"php": ">=8.1",
"ext-curl": "*",
"brick/date-time": "^0.5"
},
"scripts": {
"sync": "Castor\\Monorepo\\Command::syncProjects"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^5.1",
"composer/composer": "^2.3",
"phpbench/phpbench": "^1.2",
"ramsey/uuid": "^4.7"
}
}