-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
51 lines (51 loc) · 1.36 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
{
"name":"cehojac/antonella-framework-for-wp",
"version":"1.8.0",
"keywords": ["framework", "wordpress", "plugins"],
"prefer-stable": true,
"minimum-stability": "dev",
"description":"make easy a WordPress Plugin whit a team. Use this framework for simplycity the work in develop a plugin",
"type":"project",
"authors": [
{
"name": "Carlos Herrera",
"email": "[email protected]",
"homepage": "https://carlos-herrera.com",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"docs" : "https://antonellaframework.com/en/documentacion"
},
"repositories":[
{
"type":"composer",
"url":"https://wpackagist.org"
}
],
"license": "MIT",
"require": {
},
"require-dev":{
"vlucas/phpdotenv":"^3.5"
},
"autoload": {
"psr-4": {"CH\\": "src/"},
"files": [
"src/helpers.php"
]
},
"extra": {
"installer-paths": {
"vendor/{$name}/": ["type:wordpress-plugin","wordpress-muplugin"]
}
},
"scripts":{
"post-create-project-cmd": [
"php antonella namespace",
"php -r \"copy('.env-example', '.env');\"",
"php antonella add blade"
]
}
}