-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 999 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 999 Bytes
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
{
"name": "attitude/phpx",
"description": "PHPX is to PHP what JSX is to JS",
"type": "package",
"license": "MIT",
"authors": [
{
"name": "Martin Adamko",
"email": "attitude@users.noreply.github.com"
}
],
"scripts": {
"test": "./vendor/bin/pest",
"test:update-snapshots": "./vendor/bin/pest --update-snapshots",
"test:coverage": "./vendor/bin/pest --coverage",
"test:watch": "./tests/watch-tests.sh"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Attitude\\PHPX\\Compiler\\": "src/compiler/",
"Attitude\\PHPX\\Parser\\": "src/parser/",
"Attitude\\PHPX\\Renderer\\": "src/renderer/",
"Attitude\\PHPX\\React\\": "src/examples/react",
"Attitude\\PHPX\\LanguageServer\\": "src/language-server/"
}
},
"require": {
"php": "^8",
"psr/log": "^3.0"
},
"require-dev": {
"pestphp/pest": "^4.4",
"monolog/monolog": "^3.0"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
},
"platform": {
"php": "8.3.0"
}
}
}